mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
14 lines
413 B
Plaintext
14 lines
413 B
Plaintext
$NetBSD: patch-ab,v 1.1 2004/12/04 12:01:09 wiz Exp $
|
|
|
|
--- src/nautilus-string.c.orig 2003-07-06 23:44:18.000000000 +0200
|
|
+++ src/nautilus-string.c
|
|
@@ -375,7 +375,7 @@ nautilus_str_to_int (const char *string,
|
|
|
|
/* Check that all the trailing characters are spaces. */
|
|
while (*parse_end != '\0') {
|
|
- if (!isspace (*parse_end++)) {
|
|
+ if (!isspace (*(unsigned char *)parse_end++)) {
|
|
return FALSE;
|
|
}
|
|
}
|