diff src/neon/debug.h @ 1722:2e33cfa6a872

- Correct some compiler warnings
author Ralf Ertzinger <ralf@skytale.net>
date Mon, 17 Sep 2007 22:10:21 +0200
parents 29c35cb8873e
children 2c6cffdea077
line wrap: on
line diff
--- a/src/neon/debug.h	Mon Sep 17 21:55:52 2007 +0200
+++ b/src/neon/debug.h	Mon Sep 17 22:10:21 2007 +0200
@@ -22,7 +22,7 @@
 
 #define _ENTER _DEBUG("enter")
 #define _LEAVE _DEBUG("leave"); return
-#define _MESSAGE(tag, string, ...) do { fprintf(stderr, "%s: libneontrans.so: %s:%d (%s): " string "\n", \
+#define _MESSAGE(tag, string, ...) do { fprintf(stderr, "%s: libneonsrc.so: %s:%d (%s): " string "\n", \
     tag, __FILE__, __LINE__, __func__, ##__VA_ARGS__); } while(0)
 
 #define _ERROR(...) _MESSAGE("ERROR", __VA_ARGS__)