summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2013-09-15 16:41:40 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2013-09-15 16:41:40 +0100
commit725735cdc6e1fb7a32b23364d75e14557af6de08 (patch)
treecf4588264853abd6236d444c936764ab2b1ed246 /src
parentc5c2182fe8a0ca17941b129ac430ac6d24482d82 (diff)
Fix numeric comparisons for 64b. Bug 1385
Diffstat (limited to 'src')
-rw-r--r--src/src/expand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/expand.c b/src/src/expand.c
index dba047b28..0d8e70295 100644
--- a/src/src/expand.c
+++ b/src/src/expand.c
@@ -6560,7 +6560,7 @@ else
else
{
while (isspace(*endptr)) endptr++;
- if (*endptr == 0) return (int)value;
+ if (*endptr == 0) return value;
}
}