Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4f9d5f4a353440f2265781bfa641587964901861
Commit:     4f9d5f4a353440f2265781bfa641587964901861
Parent:     8ca3ed87db062201e1fa15b64a9214e193fc3a8a
Author:     Hoang-Nam Nguyen <[EMAIL PROTECTED]>
AuthorDate: Sat Feb 23 15:23:37 2008 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sat Feb 23 17:12:14 2008 -0800

    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 <[EMAIL PROTECTED]>
    Cc: Yi Yang <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 lib/vsprintf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index fd987b1..6021757 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);               \
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to