diff options
author | Karel Kočí <cynerd@email.cz> | 2015-04-10 12:48:27 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-04-10 12:48:27 +0200 |
commit | 5a47ee52b95734ea4224adfd341ee0f9eb5c8d62 (patch) | |
tree | d93795756385bbfdaa52ba3ceb39fc605ca064a8 /scripts/kconfig_parser/macros.h | |
parent | 336ffd327ce0d09250d03eb4c7e10c4ae3fd0abe (diff) | |
download | linux-conf-perf-5a47ee52b95734ea4224adfd341ee0f9eb5c8d62.tar.gz linux-conf-perf-5a47ee52b95734ea4224adfd341ee0f9eb5c8d62.tar.bz2 linux-conf-perf-5a47ee52b95734ea4224adfd341ee0f9eb5c8d62.zip |
Fix error printf
Diffstat (limited to 'scripts/kconfig_parser/macros.h')
-rw-r--r-- | scripts/kconfig_parser/macros.h | 2 |
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__) |