removed all stupid (void)

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1034 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-11-17 20:23:48 +00:00
parent 239db0f710
commit 6202f22614
40 changed files with 544 additions and 544 deletions

View File

@@ -92,7 +92,7 @@ getopt(nargc, nargv, ostr)
p = *nargv;
else
++p;
(void)fprintf(stderr, "%s: illegal option -- %c\n",
fprintf(stderr, "%s: illegal option -- %c\n",
p, optopt);
}
return(BADCH);
@@ -114,7 +114,7 @@ getopt(nargc, nargv, ostr)
if (*ostr == ':')
return(BADARG);
if (opterr)
(void)fprintf(stderr,
fprintf(stderr,
"%s: option requires an argument -- %c\n",
p, optopt);
return(BADCH);