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/nad_init.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/nad_init.c')
| -rw-r--r-- | src/nad_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nad_init.c b/src/nad_init.c index c64c474b..571d2569 100644 --- a/src/nad_init.c +++ b/src/nad_init.c @@ -87,7 +87,7 @@ int nad_ctable_load( projCtx ctx, struct CTABLE *ct, PAFile fid ) ct->cvs = NULL; pj_log( ctx, PJ_LOG_ERROR, - "ctable loading failed on fread() - binary incompatible?\n" ); + "ctable loading failed on fread() - binary incompatible?" ); pj_ctx_set_errno( ctx, -38 ); return 0; } |
