diff options
author | wollman <wollman@FreeBSD.org> | 2002-05-30 21:38:58 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2002-05-30 21:38:58 +0000 |
commit | ddfe2f4871fa1fb81b44b9b489c1b2eeebb94362 (patch) | |
tree | e8da926a8c8029dfa4577e661475543e73f5cded /sbin/camcontrol | |
parent | b2070d45e0031a2cff0b0d1c5b592e59421ef17f (diff) | |
download | FreeBSD-src-ddfe2f4871fa1fb81b44b9b489c1b2eeebb94362.zip FreeBSD-src-ddfe2f4871fa1fb81b44b9b489c1b2eeebb94362.tar.gz |
Fix syntax errors (labels with no statement).
Diffstat (limited to 'sbin/camcontrol')
-rw-r--r-- | sbin/camcontrol/modeedit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/camcontrol/modeedit.c b/sbin/camcontrol/modeedit.c index 9e34a79..589583d 100644 --- a/sbin/camcontrol/modeedit.c +++ b/sbin/camcontrol/modeedit.c @@ -190,7 +190,7 @@ editentry_update(void *hook, int letter, void *arg, int count, char *name) editentry_set(name, (char *)arg, 0); break; default: - /* NOTREACHED */ + ; /* NOTREACHED */ } } @@ -215,7 +215,7 @@ editentry_save(void *hook, char *name) /* NOTREACHED */ default: - /* NOTREACHED */ + ; /* NOTREACHED */ } return (0); /* This should never happen. */ @@ -317,7 +317,7 @@ editentry_set(char *name, char *newvalue, int editonly) break; default: - /* NOTREACHED */ + ; /* NOTREACHED */ } return (0); @@ -510,7 +510,7 @@ load_format(char *pagedb_path, int page) break; default: - /* NOTREACHED */ + ; /* NOTREACHED */ } /* Repeat processing loop with next character. */ |