Module Name: src
Committed By: abhinav
Date: Sun Oct 23 08:24:28 UTC 2016
Modified Files:
src/bin/sh: show.c
Log Message:
Remove unused variables.
Fixes the sh(1) build when DEBUG is enabled.
To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/bin/sh/show.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/sh/show.c
diff -u src/bin/sh/show.c:1.33 src/bin/sh/show.c:1.34
--- src/bin/sh/show.c:1.33 Wed May 11 17:28:30 2016
+++ src/bin/sh/show.c Sun Oct 23 08:24:27 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: show.c,v 1.33 2016/05/11 17:28:30 kre Exp $ */
+/* $NetBSD: show.c,v 1.34 2016/10/23 08:24:27 abhinav Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)show.c 8.3 (Berkeley) 5/4/95";
#else
-__RCSID("$NetBSD: show.c,v 1.33 2016/05/11 17:28:30 kre Exp $");
+__RCSID("$NetBSD: show.c,v 1.34 2016/10/23 08:24:27 abhinav Exp $");
#endif
#endif /* not lint */
@@ -170,8 +170,6 @@ shcmd(union node *cmd, FILE *fp)
{
union node *np;
int first;
- const char *s;
- int dftfd;
int len = 0;
first = 1;