projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fee1abd
)
xstrtol.c (__xstrtol): Remove "break" immediately after
author
Paul Eggert
<eggert@cs.ucla.edu>
Thu, 13 Nov 2003 05:17:20 +0000
(
05:17
+0000)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Thu, 13 Nov 2003 05:17:20 +0000
(
05:17
+0000)
"return", to pacify some unknown compiler. Problem reported
by Joerg Schilling.
lib/xstrtol.c
patch
|
blob
|
history
diff --git
a/lib/xstrtol.c
b/lib/xstrtol.c
index 32149397c28d9981507362522c3dc0313d308017..d0aa0a9686883a4179675cef086e3bc09f585d3a 100644
(file)
--- a/
lib/xstrtol.c
+++ b/
lib/xstrtol.c
@@
-248,7
+248,6
@@
__xstrtol (const char *s, char **ptr, int strtol_base,
default:
*val = tmp;
return err | LONGINT_INVALID_SUFFIX_CHAR;
- break;
}
err |= overflow;