From: Pavel Filipenský Date: Tue, 12 Jul 2022 08:36:30 +0000 (+0200) Subject: debug: Fix whitespace and a typo in debug.h X-Git-Tag: tevent-0.13.0~164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e2d05879eb701dad58d4f336c734c445527bed4;p=thirdparty%2Fsamba.git debug: Fix whitespace and a typo in debug.h Signed-off-by: Pavel Filipenský Reviewed-by: Andreas Schneider --- diff --git a/lib/util/debug.h b/lib/util/debug.h index 9f902863527..40cae58e790 100644 --- a/lib/util/debug.h +++ b/lib/util/debug.h @@ -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. */