Fix -Wshadow issue

This commit is contained in:
lukem 2009-04-18 09:25:50 +00:00
parent aad74fbea3
commit 54f1cbbf7a
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rmt.c,v 1.15 2008/07/21 13:36:59 lukem Exp $ */
/* $NetBSD: rmt.c,v 1.16 2009/04/18 09:25:50 lukem Exp $ */
/*
* Copyright (c) 1983, 1993
@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 1993\
#if 0
static char sccsid[] = "@(#)rmt.c 8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: rmt.c,v 1.15 2008/07/21 13:36:59 lukem Exp $");
__RCSID("$NetBSD: rmt.c,v 1.16 2009/04/18 09:25:50 lukem Exp $");
#endif
#endif /* not lint */
@ -61,7 +61,6 @@ __RCSID("$NetBSD: rmt.c,v 1.15 2008/07/21 13:36:59 lukem Exp $");
int tape = -1;
char *record;
int maxrecsize = -1;
#define SSIZE 64
@ -85,6 +84,7 @@ main(argc, argv)
int argc;
char **argv;
{
char *record = NULL;
int rval;
char c;
int n, i, cc;