diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-06-11 06:39:48 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-06-11 06:39:48 +0000 |
commit | 6596dbb3d0f17b28f401566fe166785d6d0b4eda (patch) | |
tree | 5b73fdc6db71f07f50869ffcdcedc5501e5fa006 /lib/libc | |
parent | 4757b77504cc9cdf29187c364da6b8f8d0d85536 (diff) |
random cleanup that's cheaper to commit than to remove from my tree.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/nlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/nlist.c b/lib/libc/gen/nlist.c index f0d8b992ea2..4c541381c15 100644 --- a/lib/libc/gen/nlist.c +++ b/lib/libc/gen/nlist.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: nlist.c,v 1.41 2002/02/16 21:27:23 millert Exp $"; +static char rcsid[] = "$OpenBSD: nlist.c,v 1.42 2002/06/11 06:39:47 art Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -423,7 +423,7 @@ __elf_fdnlist(fd, list) symsize -= cc; symoff += cc; for (s = sbuf; cc > 0; ++s, cc -= sizeof(*s)) { - register int soff = s->st_name; + int soff = s->st_name; if (soff == 0) continue; |