aboutsummaryrefslogtreecommitdiff
path: root/lib
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 /lib
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 'lib')
-rw-r--r--lib/libdisk/disk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libdisk/disk.c b/lib/libdisk/disk.c
index ca2d19e25769..5d2d9d591321 100644
--- a/lib/libdisk/disk.c
+++ b/lib/libdisk/disk.c
@@ -72,7 +72,7 @@ chunk_name(chunk_e type)
case apple: return ("apple");
default: return ("??");
}
-};
+}
struct disk *
Open_Disk(const char *name)