diff options
| author | Kurt Schwehr <schwehr@google.com> | 2018-03-20 15:11:27 -0700 |
|---|---|---|
| committer | Kurt Schwehr <schwehr@google.com> | 2018-03-20 15:11:27 -0700 |
| commit | 573bc5493dd2636b373d5fdd68b0795e9c2460f5 (patch) | |
| tree | 1ec7c9377174fe9ab6fe7ae4b32e5afd605a55fc /src/pj_open_lib.c | |
| parent | 50c80eceb7d61bbc0a2c8e5909ee54e0051c3d96 (diff) | |
| download | PROJ-573bc5493dd2636b373d5fdd68b0795e9c2460f5.tar.gz PROJ-573bc5493dd2636b373d5fdd68b0795e9c2460f5.zip | |
Remove final \n from pj_log messages.
There was a mix of pj_log calls with and without a trailing newline.
pj_stderr_logger already adds a newline to the end of each msg, so
pj_log calls don't need their own.
Diffstat (limited to 'src/pj_open_lib.c')
| -rw-r--r-- | src/pj_open_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pj_open_lib.c b/src/pj_open_lib.c index de271cd2..8ecbbd79 100644 --- a/src/pj_open_lib.c +++ b/src/pj_open_lib.c @@ -198,7 +198,7 @@ pj_open_lib_ex(projCtx ctx, const char *name, const char *mode, pj_ctx_set_errno( ctx, errno ); pj_log( ctx, PJ_LOG_DEBUG_MAJOR, - "pj_open_lib(%s): call fopen(%s) - %s\n", + "pj_open_lib(%s): call fopen(%s) - %s", name, sysname, fid == NULL ? "failed" : "succeeded" ); |
