From: Joseph Sutton Date: Mon, 7 Aug 2023 04:53:13 +0000 (+1200) Subject: s4:lib: Add missing newlines to logging messages X-Git-Tag: tevent-0.16.0~1105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b07dd255a44898cd7bee4ca84becdc4fb971f938;p=thirdparty%2Fsamba.git s4:lib: Add missing newlines to logging messages Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source4/lib/registry/regf.c b/source4/lib/registry/regf.c index 1e0b14324af..d0fc2a98d30 100644 --- a/source4/lib/registry/regf.c +++ b/source4/lib/registry/regf.c @@ -714,7 +714,7 @@ static WERROR regf_get_subkey_by_index(TALLOC_CTX *ctx, /* Get sublist data blob */ list_data = hbin_get(private_data->hive, ri.offset[i]); if (!list_data.data) { - DEBUG(0, ("Error getting RI list.")); + DEBUG(0, ("Error getting RI list.\n")); talloc_free(pull); return WERR_GEN_FAILURE; } @@ -998,7 +998,7 @@ static WERROR regf_get_subkey_by_name(TALLOC_CTX *ctx, /* Get sublist data blob */ list_data = hbin_get(private_data->hive, ri.offset[i]); if (list_data.data == NULL) { - DEBUG(0, ("Error getting RI list.")); + DEBUG(0, ("Error getting RI list.\n")); talloc_free(pull); return WERR_GEN_FAILURE; }