From: Jeremy Allison Date: Tue, 25 Jan 2011 22:59:44 +0000 (-0800) Subject: Missed one debug printf of name_hash. Ensure always use %x. X-Git-Tag: tevent-0.9.11~1244 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3272e16846f6b7363c5a42c8cececaf4bb409688;p=thirdparty%2Fsamba.git Missed one debug printf of name_hash. Ensure always use %x. Autobuild-User: Jeremy Allison Autobuild-Date: Wed Jan 26 00:46:28 CET 2011 on sn-devel-104 --- diff --git a/source3/locking/locking.c b/source3/locking/locking.c index f98208fbad2..1942f440195 100644 --- a/source3/locking/locking.c +++ b/source3/locking/locking.c @@ -1600,11 +1600,11 @@ const UNIX_USER_TOKEN *get_delete_on_close_token(struct share_mode_lock *lck, ui { struct delete_token_list *dtl; - DEBUG(10,("get_delete_on_close_token: name_hash = %u\n", + DEBUG(10,("get_delete_on_close_token: name_hash = 0x%x\n", (unsigned int)name_hash )); for (dtl = lck->delete_tokens; dtl; dtl = dtl->next) { - DEBUG(10,("get_delete_on_close_token: dtl->name_hash = %u\n", + DEBUG(10,("get_delete_on_close_token: dtl->name_hash = 0x%x\n", (unsigned int)dtl->name_hash )); if (dtl->name_hash == name_hash) { return dtl->delete_token;