summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorglass <glass@NetBSD.org>1995-09-16 19:01:25 +0000
committerglass <glass@NetBSD.org>1995-09-16 19:01:25 +0000
commit9f5762d576b91c03eaec96f75f0e549bae16fc2f (patch)
tree2c3b4f97794b8e8f82e40883a60b173c1b072abe
parenta106882a85867c96305bfd15dc562982737a5563 (diff)
if the function returns nothing, declare it void
-rw-r--r--usr.sbin/sup/source/supcmain.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/sup/source/supcmain.c b/usr.sbin/sup/source/supcmain.c
index 199e19507c5..7799f9f1538 100644
--- a/usr.sbin/sup/source/supcmain.c
+++ b/usr.sbin/sup/source/supcmain.c
@@ -174,6 +174,9 @@
* across the network to save BandWidth
*
* $Log: supcmain.c,v $
+ * Revision 1.4 1995/09/16 19:01:25 glass
+ * if the function returns nothing, declare it void
+ *
* Revision 1.3 1993/08/04 17:46:17 brezak
* Changes from nate for gzip'ed sup
*
@@ -444,7 +447,7 @@ char **argv;
#define Twant Tuid
#define Tcount Tgid
-doswitch (argp,collTp,oflagsp,aflagsp)
+void doswitch (argp,collTp,oflagsp,aflagsp)
char *argp;
register TREE **collTp;
int *oflagsp,*aflagsp;