diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-01-09 23:55:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-09 23:55:39 +0100 |
| commit | 763ff547aea5e1013b49254b62fc06060eccfaaf (patch) | |
| tree | daf7a4e66059e2021a398bc80e93a120a1147bad /src/log.cpp | |
| parent | 6d5924842035ae6b5af8a6685f5c531e667c7f18 (diff) | |
| parent | 03b8e99d388013558b1a2ec02a82af4763b26b34 (diff) | |
| download | PROJ-763ff547aea5e1013b49254b62fc06060eccfaaf.tar.gz PROJ-763ff547aea5e1013b49254b62fc06060eccfaaf.zip | |
Merge pull request #1218 from rouault/search_path
Add API in proj.h to set a file finder callback and search paths; support multiple directories in PROJ_LIB
Diffstat (limited to 'src/log.cpp')
| -rw-r--r-- | src/log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/log.cpp b/src/log.cpp index 4c15772b..3cc10cfd 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -74,7 +74,7 @@ void pj_vlog( projCtx ctx, int level, const char *fmt, va_list args ) /* we should use vsnprintf where available once we add configure detect.*/ vsprintf( msg_buf, fmt, args ); - ctx->logger( ctx->app_data, level, msg_buf ); + ctx->logger( ctx->logger_app_data, level, msg_buf ); free( msg_buf ); } |
