[PATCH] fix bug in klibc's isspace function.

This commit is contained in:
greg@kroah.com 2003-11-12 07:17:33 -08:00 committed by Greg KH
parent 8d8172514d
commit dc5cecf659
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ __ctype_inline int ispunct(int __c)
__ctype_inline int isspace(int __c)
{
return __ctypes[__c+1] & __ctype_space;
return __ctypes[__c] & __ctype_space;
}
__ctype_inline int isupper(int __c)