summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorart <art@openbsd.org>2002-06-11 06:39:47 +0000
committerart <art@openbsd.org>2002-06-11 06:39:47 +0000
commit6eb2243f1e82cbefcf65230af5abdd357e4e7e37 (patch)
tree5bfdc49cbfe2667e5e0ecfdc7640dab1acfe2ef9 /lib/libc
parentRemove a stupid assert that grows the kernel by 40kB. (diff)
downloadwireguard-openbsd-6eb2243f1e82cbefcf65230af5abdd357e4e7e37.tar.xz
wireguard-openbsd-6eb2243f1e82cbefcf65230af5abdd357e4e7e37.zip
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.c4
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;