diff jss.h @ 520:54974f4f2ad6

Constify.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 Nov 2012 17:34:16 +0200
parents 3bdc776a4b33
children
line wrap: on
line diff
--- a/jss.h	Mon Nov 19 17:25:05 2012 +0200
+++ b/jss.h	Mon Nov 19 17:34:16 2012 +0200
@@ -75,8 +75,8 @@
                 jssErrorIsFatal;    // if FALSE, error is considered non-fatal. this may cause strange problems.
 
 #ifndef JSS_LIGHT
-extern void     (*jssError)(int code, char *filename, int linen, char *fmt, ...);
-extern void     (*jssWarning)(int code, char *filename, int linen, char *fmt, ...);
+extern void     (*jssError)(int code, const char *filename, int linen, const char *fmt, ...);
+extern void     (*jssWarning)(int code, const char *filename, int linen, const char *fmt, ...);
 #endif