mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
[PATCH] fix bug in klibc's isspace function.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user