diff options
Diffstat (limited to 'lib/posixver.c')
-rw-r--r-- | lib/posixver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/posixver.c b/lib/posixver.c index 73a6482566..89b7c1898b 100644 --- a/lib/posixver.c +++ b/lib/posixver.c @@ -48,7 +48,7 @@ posix2_version (void) char *e; long int i = strtol (s, &e, 10); if (! *e) - v = i; + v = i; } return v < INT_MIN ? INT_MIN : v < INT_MAX ? v : INT_MAX; |