diff options
Diffstat (limited to 'runtime/stpd/librelay.h')
-rw-r--r-- | runtime/stpd/librelay.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/stpd/librelay.h b/runtime/stpd/librelay.h index 71150858..289952d7 100644 --- a/runtime/stpd/librelay.h +++ b/runtime/stpd/librelay.h @@ -1,7 +1,7 @@ #include "../transport/transport_msgs.h" #ifdef DEBUG -#define dbug(args...) {printf("%s:%d ",__FUNCTION__, __LINE__); printf(args); } +#define dbug(args...) {fprintf(stderr,"%s:%d ",__FUNCTION__, __LINE__); fprintf(stderr,args); } #else #define dbug(args...) ; #endif /* DEBUG */ |