diff common/debug.h @ 227:29467940b07b

Fixed naming of debugging print macro.
author Sascha Wilde <wilde@intevation.de>
date Thu, 27 Mar 2014 18:24:08 +0100
parents 7b9545ad76f6
children 19de529ce7fb
line wrap: on
line diff
--- a/common/debug.h	Thu Mar 27 18:21:59 2014 +0100
+++ b/common/debug.h	Thu Mar 27 18:24:08 2014 +0100
@@ -12,9 +12,9 @@
  * Prints to stderr if RELEASE_BUILD is not defined.
  */
 #ifndef RELEASE_BUILD
-#define DEBUGFPRINT(fmt, ...) fprintf(stderr, fmt, ##__VA_ARGS__);
+#define DEBUGPRINTF(fmt, ...) fprintf(stderr, fmt, ##__VA_ARGS__);
 #else
-#define DEBUGFPRINT(fmt, ...)
+#define DEBUGPRINTF(fmt, ...)
 #endif
 
 #endif

http://wald.intevation.org/projects/trustbridge/