diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-21 23:39:28 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-21 23:39:28 +0000 |
| commit | be04b6d19037a418b377ed2e33c02086cefa2b60 (patch) | |
| tree | 1cbfa8bb28a9bf0d0b93ca61ac5323ef95e4c7f7 /lib/libstand/printf.c | |
| parent | c4bc47ba6a48d582598b7f5eb13b871b956edc4e (diff) | |
Notes
Diffstat (limited to 'lib/libstand/printf.c')
| -rw-r--r-- | lib/libstand/printf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libstand/printf.c b/lib/libstand/printf.c index a9ed2258e11c..6afcbfd37916 100644 --- a/lib/libstand/printf.c +++ b/lib/libstand/printf.c @@ -106,11 +106,11 @@ vsprintf(char *buf, const char *cfmt, va_list ap) */ static char * ksprintn(ul, base, lenp) - register u_long ul; - register int base, *lenp; + u_long ul; + int base, *lenp; { /* A long in base 8, plus NULL. */ static char buf[sizeof(long) * NBBY / 3 + 2]; - register char *p; + char *p; p = buf; do { |
