diff options
author | Christopher R. Hertel <crh@samba.org> | 1999-01-27 18:22:48 +0000 |
---|---|---|
committer | Christopher R. Hertel <crh@samba.org> | 1999-01-27 18:22:48 +0000 |
commit | 4423c27fe5ff58580add16b28f08ca693144107b (patch) | |
tree | aeda74b484208be18f4435fae36c0eb2aeec061c /source3/utils | |
parent | 4af8d7aa2925569d55f33b2844882089c5569691 (diff) | |
download | samba-4423c27fe5ff58580add16b28f08ca693144107b.tar.gz samba-4423c27fe5ff58580add16b28f08ca693144107b.tar.bz2 samba-4423c27fe5ff58580add16b28f08ca693144107b.zip |
Fuss fuss fuss.
Added missing default: statements to two switch blocks.
Chris -)-----
(This used to be commit 0681f6946be2f7b528a1efb6adcc2366a2951644)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/debug2html.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/utils/debug2html.c b/source3/utils/debug2html.c index c7f36da0c0..62ecacf7e8 100644 --- a/source3/utils/debug2html.c +++ b/source3/utils/debug2html.c @@ -28,7 +28,7 @@ * does a decent job of converting Samba logs into HTML. * -------------------------------------------------------------------------- ** * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * * ========================================================================== ** */ @@ -128,6 +128,8 @@ static void newblock( dbg_Token old, dbg_Token new ) case dbg_lineno: (void)fprintf( outfile, ")" ); break; + default: + break; } switch( new ) @@ -141,6 +143,8 @@ static void newblock( dbg_Token old, dbg_Token new ) case dbg_lineno: (void)fprintf( outfile, "(" ); break; + default: + break; } } /* newblock */ |