1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Fuss fuss fuss.

Added missing default: statements to two switch blocks.

Chris -)-----
This commit is contained in:
Christopher R. Hertel 0001-01-01 00:00:00 +00:00
parent 2a509e9606
commit 0681f6946b

View File

@ -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 */