1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

debug: Fix whitespace and a typo in debug.h

Signed-off-by: Pavel Filipenský <pfilipen@redhat.com>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Pavel Filipenský 2022-07-12 10:36:30 +02:00 committed by Andreas Schneider
parent bbc5abfa6d
commit 8e2d05879e

View File

@ -139,7 +139,7 @@ bool dbgsetclass(int level, int cls);
*
* Example: DEBUGC( DBGC_TDB, 2, ("Some text and a value %d.\n", value) );
*
* DEBUGADD(), DEBUGADDC()
* DEBUGADD(), DEBUGADDC()
* Same as DEBUG() and DEBUGC() except the text is appended to the previous
* DEBUG(), DEBUGC(), DEBUGADD(), DEBUGADDC() with out another interviening
* header.
@ -147,7 +147,7 @@ bool dbgsetclass(int level, int cls);
* Example: DEBUGADD( 2, ("Some text and a value %d.\n", value) );
* DEBUGADDC( DBGC_TDB, 2, ("Some text and a value %d.\n", value) );
*
* Note: If the debug class has not be redeined (see above) then the optimizer
* Note: If the debug class has not be redefined (see above) then the optimizer
* will remove the extra conditional test.
*/