From: Hoang-Nam Nguyen Date: Sat, 23 Feb 2008 23:23:37 +0000 (-0800) Subject: lib/vsprintf.c: fix bug omitting minus sign of numbers (module_param) X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4f9d5f4a353440f2265781bfa641587964901861;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git lib/vsprintf.c: fix bug omitting minus sign of numbers (module_param) lib/vsprintf.c: Fix bug omitting minus sign of numbers (module_param) Signed-off-by: Hoang-Nam Nguyen Cc: Yi Yang Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/lib/vsprintf.c b/lib/vsprintf.c index fd987b17bda7..6021757a4496 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -234,7 +234,7 @@ int strict_strto##type(const char *cp, unsigned int base, valtype *res) \ int ret; \ if (*cp == '-') { \ ret = strict_strtou##type(cp+1, base, res); \ - if (ret != 0) \ + if (!ret) \ *res = -(*res); \ } else \ ret = strict_strtou##type(cp, base, res); \