diff options
Diffstat (limited to 'src/pj_log.c')
| -rw-r--r-- | src/pj_log.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/pj_log.c b/src/pj_log.c index 630a3cfe..54b83a05 100644 --- a/src/pj_log.c +++ b/src/pj_log.c @@ -1,6 +1,4 @@ /****************************************************************************** - * $Id$ - * * Project: PROJ.4 * Purpose: Implementation of pj_log() function. * Author: Frank Warmerdam, warmerdam@pobox.com @@ -31,8 +29,6 @@ #include <string.h> #include <stdarg.h> -PJ_CVSID("$Id$"); - /************************************************************************/ /* pj_stderr_logger() */ /************************************************************************/ @@ -40,6 +36,8 @@ PJ_CVSID("$Id$"); void pj_stderr_logger( void *app_data, int level, const char *msg ) { + (void) app_data; + (void) level; fprintf( stderr, "%s\n", msg ); } |
