diff options
| author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-30 06:41:30 +0000 |
|---|---|---|
| committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-30 06:41:30 +0000 |
| commit | 7799f52a32f592a7efe259bc3411ba52d13db797 (patch) | |
| tree | 350f6f98843363254f9afe467ae0c92d5a9d7f43 /usr.bin/printf/printf.c | |
| parent | 5ebc7e6281887681c3a348a5a4c902e262ccd656 (diff) | |
Notes
Diffstat (limited to 'usr.bin/printf/printf.c')
| -rw-r--r-- | usr.bin/printf/printf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/printf/printf.c b/usr.bin/printf/printf.c index 3136703467dd..9c8e9e02db78 100644 --- a/usr.bin/printf/printf.c +++ b/usr.bin/printf/printf.c @@ -218,7 +218,7 @@ next: for (start = fmt;; ++fmt) { case 'd': case 'i': case 'o': case 'u': case 'x': case 'X': { long p; char *f; - + if ((f = mklong(start, convch)) == NULL) return (1); if (getlong(&p)) @@ -379,7 +379,7 @@ getlong(lp) warnx("%s: %s", *gargv, strerror(ERANGE)); return (1); } - + *lp = val; ++gargv; return (0); |
