From 9f3537caad605b66633230cdc31849ea4a59e884 Mon Sep 17 00:00:00 2001 From: Brian Feldman Date: Fri, 29 Jun 2001 20:06:47 +0000 Subject: [PATCH] Use __unused for non-used variables. Submitted by: Mike Barcroft --- bin/dd/dd.c | 2 +- bin/dd/misc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/dd/dd.c b/bin/dd/dd.c index a5bb0328562a..04f95734c2bc 100644 --- a/bin/dd/dd.c +++ b/bin/dd/dd.c @@ -87,7 +87,7 @@ const u_char *ctab; /* conversion table */ int main(argc, argv) - int argc; + int argc __unused; char *argv[]; { (void)setlocale(LC_CTYPE, ""); diff --git a/bin/dd/misc.c b/bin/dd/misc.c index 296a01868a92..654462e7f213 100644 --- a/bin/dd/misc.c +++ b/bin/dd/misc.c @@ -90,7 +90,7 @@ summary() /* ARGSUSED */ void summaryx(notused) - int notused; + int notused __unused; { int save_errno = errno;