ARGNUMF() only works on base 10 as it uses strtonum underneath

This commit is contained in:
sin
2015-01-30 16:45:44 +00:00
parent fd562481f3
commit b66c44b24e
4 changed files with 4 additions and 4 deletions

2
head.c
View File

@@ -44,7 +44,7 @@ main(int argc, char *argv[])
n = estrtonum(EARGF(usage()), 0, LONG_MAX);
break;
ARGNUM:
n = ARGNUMF(0);
n = ARGNUMF();
break;
default:
usage();