diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-18 19:24:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-18 19:24:15 +0000 |
commit | c28052ac927ad945292f0c0f549af6cdd6b28975 (patch) | |
tree | dd783d2adeaa5bb42915f47aac7760683676e518 /lib | |
parent | b73dc6d358adbd4434d384da390080d3cda184dd (diff) |
label a switch fallthrough
Diffstat (limited to 'lib')
-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); |