diff options
| author | Nyall Dawson <nyall.dawson@gmail.com> | 2019-06-02 23:05:35 +0000 |
|---|---|---|
| committer | Nyall Dawson <nyall.dawson@gmail.com> | 2019-06-03 06:55:32 +0000 |
| commit | c4e3e60fdc222ebb789d9887c75a49a5713f4dd8 (patch) | |
| tree | ae2c210c46ffe85dad5548eb1b34f3355240b100 /src/4D_api.cpp | |
| parent | e16b5585d59f1e153d67f04c8199a2468b89563f (diff) | |
| download | PROJ-c4e3e60fdc222ebb789d9887c75a49a5713f4dd8.tar.gz PROJ-c4e3e60fdc222ebb789d9887c75a49a5713f4dd8.zip | |
Fix incorrect delimator ";" used to separate proj_info().searchpath
entries on non-windows platforms, should be ":"
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 81e16600..4022b5be 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; } |
