From 00331d773c2cc3a6fc3a428ee46e8ccdc6097d66 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 23 Oct 2025 19:24:42 +0200 Subject: [PATCH] smbd: Modernize a DEBUG Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- source3/smbd/files.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source3/smbd/files.c b/source3/smbd/files.c index 11609522fb7..3c03f7b8dd3 100644 --- a/source3/smbd/files.c +++ b/source3/smbd/files.c @@ -2607,9 +2607,7 @@ static NTSTATUS file_name_hash(connection_struct *conn, key = (TDB_DATA) { .dptr = (uint8_t *)fullpath, .dsize = len+1 }; *p_name_hash = tdb_jenkins_hash(&key); - DEBUG(10,("file_name_hash: %s hash 0x%x\n", - fullpath, - (unsigned int)*p_name_hash )); + DBG_DEBUG("%s hash 0x%" PRIx32 "\n", fullpath, *p_name_hash); TALLOC_FREE(to_free); return NT_STATUS_OK; -- 2.47.3