aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-04-10 12:48:27 +0200
committerKarel Kočí <cynerd@email.cz>2015-04-10 12:48:27 +0200
commit5a47ee52b95734ea4224adfd341ee0f9eb5c8d62 (patch)
treed93795756385bbfdaa52ba3ceb39fc605ca064a8 /scripts
parent336ffd327ce0d09250d03eb4c7e10c4ae3fd0abe (diff)
downloadlinux-conf-perf-5a47ee52b95734ea4224adfd341ee0f9eb5c8d62.tar.gz
linux-conf-perf-5a47ee52b95734ea4224adfd341ee0f9eb5c8d62.tar.bz2
linux-conf-perf-5a47ee52b95734ea4224adfd341ee0f9eb5c8d62.zip
Fix error printf
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig_parser/macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig_parser/macros.h b/scripts/kconfig_parser/macros.h
index 13a5d43..95bb16f 100644
--- a/scripts/kconfig_parser/macros.h
+++ b/scripts/kconfig_parser/macros.h
@@ -1,6 +1,6 @@
extern int verbose_level; // Defined in kconfig_parser.c
-#define Eprintf(...) printf(stderr, __VA_ARGS__)
+#define Eprintf(...) fprintf(stderr, __VA_ARGS__)
#define Wprintf(...) if (verbose_level > 1) printf(__VA_ARGS__)
#define Iprintf(...) if (verbose_level > 2) printf(__VA_ARGS__)