[pisa-src] r1419 - trunk/libpisa/pisaconf.c

  • From: Thomas Jansen <mithi@xxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Thu, 29 Oct 2009 16:57:38 +0100

Author: tjansen
Date: Thu Oct 29 16:57:32 2009
New Revision: 1419

Log:
Fix warning:

libpisa/pisaconf.c:200: warning: initialization discards qualifiers from 
pointer target type

Modified:
   trunk/libpisa/pisaconf.c

Modified: trunk/libpisa/pisaconf.c
==============================================================================
--- trunk/libpisa/pisaconf.c    Thu Oct 29 16:52:28 2009        (r1418)
+++ trunk/libpisa/pisaconf.c    Thu Oct 29 16:57:32 2009        (r1419)
@@ -193,7 +193,7 @@
        return 0;
 }
 
-char *pisa_conf_usage_common =
+char pisa_conf_usage_common[] =
 "Common options:\n"
 "\tdebuglevel\t: Set the debug level to 'all', 'medium', 'none'.\n"
 "\tdebugmask\t: 'set', 'add' or 'del' bits in the debugmask.\n"

Other related posts:

  • » [pisa-src] r1419 - trunk/libpisa/pisaconf.c - Thomas Jansen