Skip to content
Snippets Groups Projects
Commit 1f302364 authored by edgrif's avatar edgrif
Browse files

fix compiler warning.

parent ed69876a
No related branches found
No related tags found
No related merge requests found
......@@ -25,9 +25,9 @@
* Description: Contains macros, functions etc. for logging.
*
* HISTORY:
* Last edited: Apr 17 15:01 2007 (edgrif)
* Last edited: Apr 19 17:25 2007 (edgrif)
* Created: Mon Mar 29 16:51:28 2004 (edgrif)
* CVS info: $Id: zmapUtilsLog.h,v 1.6 2007-04-17 14:58:40 edgrif Exp $
* CVS info: $Id: zmapUtilsLog.h,v 1.7 2007-04-23 13:51:15 edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_UTILS_LOG_H
......@@ -79,7 +79,7 @@
/* The base logging routine, you should use the below macros which automatically
* include the stuff you need instead of this routine. */
void zMapLogMsg(char *domain, GLogLevelFlags log_level,
char *file, char *function, int line,
char *file, const char *function, int line,
char *format, ...) ;
......
......@@ -29,9 +29,9 @@
*
* Exported functions: See zmapUtilsLog.h
* HISTORY:
* Last edited: Apr 17 15:50 2007 (edgrif)
* Last edited: Apr 19 17:28 2007 (edgrif)
* Created: Tue Apr 17 15:47:10 2007 (edgrif)
* CVS info: $Id: zmapLogging.c,v 1.11 2007-04-17 14:58:40 edgrif Exp $
* CVS info: $Id: zmapLogging.c,v 1.12 2007-04-23 13:51:15 edgrif Exp $
*-------------------------------------------------------------------
*/
......@@ -164,7 +164,7 @@ gboolean zMapLogStart()
void zMapLogMsg(char *domain, GLogLevelFlags log_level,
char *file, char *function, int line,
char *file, const char *function, int line,
char *format, ...)
{
ZMapLog log = log_G ;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment