diff --git a/kernel/kernel.c b/kernel/kernel.c index b58b843..780dcc8 100644 --- a/kernel/kernel.c +++ b/kernel/kernel.c @@ -143,7 +143,6 @@ int strcasecmp(const char *s1, const char *s2) s2++; } - /* Either *s1 or *s2 is 0 */ return (int)UPPER(*s1) - (int)UPPER(*s2); }