Author: stepan
Date: 2008-08-19 18:53:47 +0200 (Tue, 19 Aug 2008)
New Revision: 3518

Modified:
   trunk/payloads/libpayload/libc/ctype.c
Log:
fix typo in ctype.c

Signed-off-by: Stefan Reinauer <[EMAIL PROTECTED]>
Acked-by: Stefan Reinauer <[EMAIL PROTECTED]>



Modified: trunk/payloads/libpayload/libc/ctype.c
===================================================================
--- trunk/payloads/libpayload/libc/ctype.c      2008-08-18 19:29:41 UTC (rev 
3517)
+++ trunk/payloads/libpayload/libc/ctype.c      2008-08-19 16:53:47 UTC (rev 
3518)
@@ -81,7 +81,7 @@
 
 int isspace(int c)
 {
-       return (c == ' ' || (c >= '\t' || c <= '\r'));
+       return (c == ' ' || (c >= '\t' && c <= '\r'));
 }
 
 int isupper(int c)


--
coreboot mailing list
[email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to