patch-2.4.19 linux-2.4.19/scripts/mkdep.c
Next file: linux-2.4.19/scripts/mkspec
Previous file: linux-2.4.19/scripts/kernel-doc
Back to the patch index
Back to the overall index
- Lines: 18
- Date:
Fri Aug 2 17:39:46 2002
- Orig file:
linux-2.4.18/scripts/mkdep.c
- Orig date:
Fri Sep 14 14:40:00 2001
diff -urN linux-2.4.18/scripts/mkdep.c linux-2.4.19/scripts/mkdep.c
@@ -268,7 +268,7 @@
for (i = 0; i < len; i++) {
char c = name[i];
- if (isupper(c)) c = tolower(c);
+ if (isupper((int)c)) c = tolower((int)c);
if (c == '_') c = '/';
pc[i] = c;
}
@@ -496,7 +496,7 @@
/* \<CONFIG_(\w*) */
cee:
- if (next >= map+2 && (isalnum(next[-2]) || next[-2] == '_'))
+ if (next >= map+2 && (isalnum((int)next[-2]) || next[-2] == '_'))
goto start;
GETNEXT NOTCASE('O', __start);
GETNEXT NOTCASE('N', __start);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)