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 /loginutils | |
parent | f350160963c4412bb76f3e8cca669529fdde81d1 (diff) | |
download | busybox-68229837ff1e690190d51b74b281cfe999220e6d.zip busybox-68229837ff1e690190d51b74b281cfe999220e6d.tar.gz |
Remove all usage of the "register" storage class specifier.
Diffstat (limited to 'loginutils')
-rw-r--r-- | loginutils/login.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/login.c b/loginutils/login.c index 46c4ade..789293a 100644 --- a/loginutils/login.c +++ b/loginutils/login.c @@ -377,7 +377,7 @@ static int is_my_tty ( const char *tty ) static void motd (void) { FILE *fp; - register int c; + int c; if (( fp = fopen ( bb_path_motd_file, "r" ))) { while (( c = getc ( fp )) != EOF ) |