1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

s4:lib: Add missing newlines to logging messages

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-08-07 16:53:13 +12:00 committed by Andrew Bartlett
parent fd6c3e6b7c
commit b07dd255a4

View File

@ -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;
}