summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2006-04-20 20:00:46 +0000
committerderaadt <deraadt@openbsd.org>2006-04-20 20:00:46 +0000
commit0ce31a0fcdda9e3de0c2b82f9be277c567fa89de (patch)
treec88c85566aa47d3af136d279f63ff9a02d30ea11
parentlist must be sorted (diff)
downloadwireguard-openbsd-0ce31a0fcdda9e3de0c2b82f9be277c567fa89de.tar.xz
wireguard-openbsd-0ce31a0fcdda9e3de0c2b82f9be277c567fa89de.zip
unused variable
-rw-r--r--usr.bin/bc/bc.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/bc/bc.y b/usr.bin/bc/bc.y
index 10982080925..9ba079c55e5 100644
--- a/usr.bin/bc/bc.y
+++ b/usr.bin/bc/bc.y
@@ -1,5 +1,5 @@
%{
-/* $OpenBSD: bc.y,v 1.30 2006/03/31 09:57:26 otto Exp $ */
+/* $OpenBSD: bc.y,v 1.31 2006/04/20 20:00:46 deraadt Exp $ */
/*
* Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
@@ -31,7 +31,7 @@
*/
#ifndef lint
-static const char rcsid[] = "$OpenBSD: bc.y,v 1.30 2006/03/31 09:57:26 otto Exp $";
+static const char rcsid[] = "$OpenBSD: bc.y,v 1.31 2006/04/20 20:00:46 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -1080,7 +1080,7 @@ sigchld(int signo)
int
main(int argc, char *argv[])
{
- int i, ch, ret;
+ int i, ch;
int p[2];
char *q;