diff options
author | Masahiro Yamada | 2018-02-06 09:34:41 +0900 |
---|---|---|
committer | Masahiro Yamada | 2018-02-09 04:10:10 +0900 |
commit | 9e3e10c725360b9d07018cfcd5b7b6b7d325fae5 (patch) | |
tree | c3de9ca1974443fb36319e74ac0b7b893a3a39eb /scripts/kconfig/symbol.c | |
parent | f3ff6fb5db68bcd460e9880d5fb4902520dd645b (diff) |
kconfig: send error messages to stderr
These messages should be directed to stderr.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Ulf Magnusson <ulfalizer@gmail.com>
Diffstat (limited to 'scripts/kconfig/symbol.c')
-rw-r--r-- | scripts/kconfig/symbol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c index 13f7fdfe328d..c4409ee7fee2 100644 --- a/scripts/kconfig/symbol.c +++ b/scripts/kconfig/symbol.c @@ -1221,7 +1221,7 @@ static struct symbol *sym_check_expr_deps(struct expr *e) default: break; } - printf("Oops! How to check %d?\n", e->type); + fprintf(stderr, "Oops! How to check %d?\n", e->type); return NULL; } |