Sync with gnulib 94ee038129c3b40510ef0ff6ac6ddfe85bf0f97f.

(xstrtoumax): use enum instead of 0, to pacify IRIX 6.5 cc.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2014-05-11 15:24:44 +04:00
parent acf34eb98e
commit e6030d8e74
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ xstrtoumax (const char *s, char **ptr, int base, uintmax_t * val, const char *va
break;
case 'c':
overflow = 0;
overflow = LONGINT_OK;
break;
case 'E': /* exa or exbi */