aboutsummaryrefslogtreecommitdiff
path: root/util-linux/hexdump.c
diff options
context:
space:
mode:
author"Robert P. J. Day" <rpjday@mindspring.com>2006-07-01 13:08:46 +0000
committer"Robert P. J. Day" <rpjday@mindspring.com>2006-07-01 13:08:46 +0000
commit68229837ff1e690190d51b74b281cfe999220e6d (patch)
tree7cbdeded060f86cefc4edd006c2538c2a2a4ea97 /util-linux/hexdump.c
parentf350160963c4412bb76f3e8cca669529fdde81d1 (diff)
downloadbusybox-68229837ff1e690190d51b74b281cfe999220e6d.tar.gz
Remove all usage of the "register" storage class specifier.
Diffstat (limited to 'util-linux/hexdump.c')
-rw-r--r--util-linux/hexdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c
index 17854cb18..2181b846d 100644
--- a/util-linux/hexdump.c
+++ b/util-linux/hexdump.c
@@ -15,7 +15,7 @@
static void bb_dump_addfile(char *name)
{
- register char *p;
+ char *p;
FILE *fp;
char *buf;