Skip to content

Commit

Permalink
Merge c4e3e60 into e16b558
Browse files Browse the repository at this point in the history
  • Loading branch information
backporting[bot] committed Jun 4, 2019
2 parents e16b558 + c4e3e60 commit bce66d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/4D_api.cpp
Expand Up @@ -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;
}
Expand Down
3 changes: 2 additions & 1 deletion src/proj.h
Expand Up @@ -277,7 +277,8 @@ struct PJ_INFO {
const char *version; /* Full version number */
const char *searchpath; /* Paths where init and grid files are */
/* looked for. Paths are separated by */
/* semi-colons. */
/* semi-colons on Windows, and colons */
/* on non-Windows platforms. */
const char * const *paths;
size_t path_count;
};
Expand Down

0 comments on commit bce66d6

Please sign in to comment.