From: Joseph Sutton Date: Tue, 1 Aug 2023 03:51:14 +0000 (+1200) Subject: s4:dsdb: Remove unnecessary parentheses X-Git-Tag: tevent-0.16.0~1113 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=54714b3580649d6e27eb1c4f005ade7bf1f198d7;p=thirdparty%2Fsamba.git s4:dsdb: Remove unnecessary parentheses Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index 716a9c68072..47e831339fa 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -3700,7 +3700,7 @@ int samdb_is_rodc(struct ldb_context *sam_ctx, const struct GUID *objectGUID, bo } if (ret != LDB_SUCCESS) { - DEBUG(1,(("Failed to find our own NTDS Settings object by objectGUID=%s!\n"), + DEBUG(1,("Failed to find our own NTDS Settings object by objectGUID=%s!\n", GUID_string(tmp_ctx, objectGUID))); *is_rodc = false; talloc_free(tmp_ctx);