diff options
author | Glenn L McGrath | 2003-02-09 22:40:34 +0000 |
---|---|---|
committer | Glenn L McGrath | 2003-02-09 22:40:34 +0000 |
commit | 883d4842d26e0ad7667c04579c089ec3ba7960d8 (patch) | |
tree | 058d47cfedf18269b0a6986a7536e9b812c74677 /libbb/login.c | |
parent | 826b48b624e3c02b432b8ffbb7809657ddb3a012 (diff) | |
download | busybox-883d4842d26e0ad7667c04579c089ec3ba7960d8.zip busybox-883d4842d26e0ad7667c04579c089ec3ba7960d8.tar.gz |
Fix compiler warnings, patch by Steven Scholz
Diffstat (limited to 'libbb/login.c')
-rw-r--r-- | libbb/login.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libbb/login.c b/libbb/login.c index 9b33f6c..092f159 100644 --- a/libbb/login.c +++ b/libbb/login.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * - * $Id: login.c,v 1.1 2003/01/21 20:59:34 bug1 Exp $ + * $Id: login.c,v 1.2 2003/02/09 22:40:33 bug1 Exp $ */ #include <stdio.h> @@ -37,7 +37,6 @@ void print_login_issue(const char *issue_file, const char *tty) FILE *fd; int c; char buf[256]; - char *ret; time_t t; struct utsname uts; |