From d3b985e2591d7a343ef11b7403a313f2235b75a5 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Wed, 17 Nov 2010 10:35:25 +0000 Subject: [PATCH] Log goes to stderr instead of stdout SVN revision: 54626 --- legacy/elementary/src/lib/elm_cnp_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/elementary/src/lib/elm_cnp_helper.c b/legacy/elementary/src/lib/elm_cnp_helper.c index ee09098279..89d60561e9 100644 --- a/legacy/elementary/src/lib/elm_cnp_helper.c +++ b/legacy/elementary/src/lib/elm_cnp_helper.c @@ -23,7 +23,7 @@ #define DEBUGON 1 #if DEBUGON -#define cnp_debug(x...) printf(__FILE__": " x) +#define cnp_debug(x...) fprintf(stderr, __FILE__": " x) #else #define cnp_debug(x...) #endif