From b07dd255a44898cd7bee4ca84becdc4fb971f938 Mon Sep 17 00:00:00 2001 From: Joseph Sutton Date: Mon, 7 Aug 2023 16:53:13 +1200 Subject: [PATCH] s4:lib: Add missing newlines to logging messages Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- source4/lib/registry/regf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.47.3