diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-06-04 22:00:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-04 22:00:12 +0200 |
| commit | 21ce6dd6b20f8d6eea8881d20952042218827cba (patch) | |
| tree | b5fafd9804a8a9bc19d0530609f9a6920c66d81d /src/4D_api.cpp | |
| parent | c50ef876b7a526ce55634a090737d498f97620ad (diff) | |
| parent | a7a765199ea75cbc04b4473bca6afef2385a4a50 (diff) | |
| download | PROJ-21ce6dd6b20f8d6eea8881d20952042218827cba.tar.gz PROJ-21ce6dd6b20f8d6eea8881d20952042218827cba.zip | |
Fix incorrect delimator ";" used to separate proj_info().searchpath entries (#1497)
Fix incorrect delimator ";" used to separate proj_info().searchpath entries
Diffstat (limited to 'src/4D_api.cpp')
| -rw-r--r-- | src/4D_api.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/4D_api.cpp b/src/4D_api.cpp index 5d84e6c6..9f445d88 100644 --- a/src/4D_api.cpp +++ b/src/4D_api.cpp @@ -1367,9 +1367,9 @@ static char *path_append (char *buf, const char *app, size_t *buf_size) { } assert(buf); - /* Only append a semicolon if something's already there */ + /* Only append a delimiter if something's already there */ if (0 != buflen) - strcat (buf, ";"); + strcat (buf, delim); strcat (buf, app); return buf; } |
