Missed one debug printf of name_hash. Ensure always use %x.
[ira/wip.git] / source3 / locking / locking.c
index f98208fbad2cc978577a7719b5e25652c5a8f587..1942f440195fcf0877505cab2c7af05bc8d15015 100644 (file)
@@ -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;