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 | 0681f6946be2f7b528a1efb6adcc2366a2951644 (patch) | |
tree | 8250079dfd84655ef27410f1878d03c5ec59e434 /source | |
parent | 2a509e9606f8aefbefa6e7b49878726464dbed44 (diff) | |
download | samba-0681f6946be2f7b528a1efb6adcc2366a2951644.tar.gz samba-0681f6946be2f7b528a1efb6adcc2366a2951644.tar.xz samba-0681f6946be2f7b528a1efb6adcc2366a2951644.zip |
Fuss fuss fuss.
Added missing default: statements to two switch blocks.
Chris -)-----
Diffstat (limited to 'source')
-rw-r--r-- | source/utils/debug2html.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/utils/debug2html.c b/source/utils/debug2html.c index c7f36da0c05..62ecacf7e89 100644 --- a/source/utils/debug2html.c +++ b/source/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 */ |