diff options
author | Marco S Hyman <marc@cvs.openbsd.org> | 2002-07-10 17:28:17 +0000 |
---|---|---|
committer | Marco S Hyman <marc@cvs.openbsd.org> | 2002-07-10 17:28:17 +0000 |
commit | b440e6f31f70cf106237e6ba3e0aeb7044a684e6 (patch) | |
tree | bde0ed3c37a4afc5379aadda8f120efd72c4a3d2 /gnu/usr.bin/ld/ldconfig | |
parent | e1381c06b8d23a558a761f3359b203f264df0b9d (diff) |
First of some clean-up commits. This one only removes use of
register variables. clean-up concept ok deraadt@
Diffstat (limited to 'gnu/usr.bin/ld/ldconfig')
-rw-r--r-- | gnu/usr.bin/ld/ldconfig/ldconfig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/ld/ldconfig/ldconfig.c b/gnu/usr.bin/ld/ldconfig/ldconfig.c index 8887f06fb9f..0c40b823e6c 100644 --- a/gnu/usr.bin/ld/ldconfig/ldconfig.c +++ b/gnu/usr.bin/ld/ldconfig/ldconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ldconfig.c,v 1.9 2000/06/28 15:32:40 form Exp $ */ +/* $OpenBSD: ldconfig.c,v 1.10 2002/07/10 17:28:16 marc Exp $ */ /* * Copyright (c) 1993,1995 Paul Kranenburg @@ -187,8 +187,8 @@ int silent; } while ((dp = readdir(dd)) != NULL) { - register int n; - register char *cp; + int n; + char *cp; /* Check for `lib' prefix */ if (dp->d_name[0] != 'l' || |