diff options
author | "Robert P. J. Day" | 2006-07-01 13:08:46 +0000 |
---|---|---|
committer | "Robert P. J. Day" | 2006-07-01 13:08:46 +0000 |
commit | 68229837ff1e690190d51b74b281cfe999220e6d (patch) | |
tree | 7cbdeded060f86cefc4edd006c2538c2a2a4ea97 /coreutils/od.c | |
parent | f350160963c4412bb76f3e8cca669529fdde81d1 (diff) | |
download | busybox-68229837ff1e690190d51b74b281cfe999220e6d.zip busybox-68229837ff1e690190d51b74b281cfe999220e6d.tar.gz |
Remove all usage of the "register" storage class specifier.
Diffstat (limited to 'coreutils/od.c')
-rw-r--r-- | coreutils/od.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/od.c b/coreutils/od.c index b70cb85..13f91ee 100644 --- a/coreutils/od.c +++ b/coreutils/od.c @@ -35,7 +35,7 @@ static void odoffset(int argc, char ***argvp) { - register char *num, *p; + char *num, *p; int base; char *end; |