]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s4:lib: Add missing newlines to logging messages
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Mon, 7 Aug 2023 04:53:13 +0000 (16:53 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 8 Aug 2023 04:39:38 +0000 (04:39 +0000)
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source4/lib/registry/regf.c

index 1e0b14324af64abd712cc6bfc0faf0033d063bda..d0fc2a98d302be8d8ab6d2b7d53600a6fe045078 100644 (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;
                        }