diff options
author | 2004-09-18 19:24:14 +0000 | |
---|---|---|
committer | 2004-09-18 19:24:14 +0000 | |
commit | 4e632a0c1e1a2b45d81e7350d910a074bb507b2f (patch) | |
tree | 759e89f6bc0117d8c0d644c8bca2d6613ef44395 /lib/libutil | |
parent | avoid aliasing over library symbol (diff) | |
download | wireguard-openbsd-4e632a0c1e1a2b45d81e7350d910a074bb507b2f.tar.xz wireguard-openbsd-4e632a0c1e1a2b45d81e7350d910a074bb507b2f.zip |
label a switch fallthrough
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/readlabel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libutil/readlabel.c b/lib/libutil/readlabel.c index b9dfd724858..6044574967f 100644 --- a/lib/libutil/readlabel.c +++ b/lib/libutil/readlabel.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readlabel.c,v 1.8 2004/05/28 07:03:47 deraadt Exp $ */ +/* $OpenBSD: readlabel.c,v 1.9 2004/09/18 19:24:14 deraadt Exp $ */ /* * Copyright (c) 1996, Jason Downs. All rights reserved. @@ -80,6 +80,7 @@ readlabelfs(char *device, int verbose) rpath[strlen(rpath) - 1] = 'a' + getrawpartition(); break; } + /* FALLTHROUGH */ default: if (verbose) warnx("%s: not a device node", device); |