aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorStefan Farfeleder <stefanf@FreeBSD.org>2004-05-16 22:08:17 +0000
committerStefan Farfeleder <stefanf@FreeBSD.org>2004-05-16 22:08:17 +0000
commita752604477c646135eb8972a9797f4c331ce09ac (patch)
treed0e580fe01975ec46af69e68238174deea46d8f4 /usr.bin
parent5eb4afcbb96a4ad477e2223afb963d8bbee5e009 (diff)
downloadsrc-a752604477c646135eb8972a9797f4c331ce09ac.tar.gz
src-a752604477c646135eb8972a9797f4c331ce09ac.zip
Remove spurious semicolons. Outside of functions they are actually errors but
GCC doesn't warn about them without -pedantic. Approved by: das (mentor) PR: 56649 Reviewed by: md5
Notes
Notes: svn path=/head/; revision=129302
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/finger/net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/finger/net.c b/usr.bin/finger/net.c
index a3c40b56929f..2bd35ad00ac2 100644
--- a/usr.bin/finger/net.c
+++ b/usr.bin/finger/net.c
@@ -58,7 +58,7 @@ __FBSDID("$FreeBSD$");
#include <utmp.h>
#include "finger.h"
-static void cleanup(int sig);;
+static void cleanup(int sig);
static int do_protocol(const char *name, const struct addrinfo *ai);
static void trying(const struct addrinfo *ai);