blob: 6c9db04d64ebe18a60d824fd734cbcf6e14b74f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- Library/src/HTMIMImp.c.orig Sun Jun 30 22:51:48 2002
+++ Library/src/HTMIMImp.c Sun Jun 30 22:52:01 2002
@@ -226,7 +226,7 @@
int value = deflt;
if (start != NULL) {
start += strlen(needle);
- while isspace(*start) start++;
+ while (isspace(*start)) start++;
if (isdigit(*start)) {
char * end = start + 1;
char save;
|