diff options
author | Russell King <rmk@arm.linux.org.uk> | 2013-06-22 22:17:49 +0100 |
---|---|---|
committer | Russell King <rmk@arm.linux.org.uk> | 2013-06-22 22:18:09 +0100 |
commit | 4955e668e477720e371a8f4abcd2931ff359cc48 (patch) | |
tree | d468044247a5eb9d9c56da90760bc743166deba7 /bmm_lib.c | |
parent | dde5602fbe9619ad1caafbfdaad47b9605da1ffa (diff) |
Make debug output go to stderr
Diffstat (limited to 'bmm_lib.c')
-rw-r--r-- | bmm_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ #ifdef DEBUG #include <stdio.h> -#define pr_debug(fmt, arg...) printf(fmt, ##arg) +#define pr_debug(fmt, arg...) fprintf(stderr, fmt, ##arg) #else #define pr_debug(fmt, arg...) do { } while(0) #endif |