r21764: Fix warning in debug comment.
authorJeremy Allison <jra@samba.org>
Thu, 8 Mar 2007 18:43:39 +0000 (18:43 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:18:29 +0000 (12:18 -0500)
Jeremy.
(This used to be commit 12c29a8e9bd87550ad7a8e7ceaf4cba59994547a)

source3/modules/vfs_recycle.c

index 240931fa7814a6cd206b6f13a67d4248793ec4eb..579cc94cf942f99254075ae3e2feae8e72f96b42 100644 (file)
@@ -160,7 +160,7 @@ static SMB_OFF_T recycle_maxsize(vfs_handle_struct *handle)
        maxsize = conv_str_size(lp_parm_const_string(SNUM(handle->conn),
                                            "recycle", "maxsize", NULL));
 
-       DEBUG(10, ("recycle: maxsize = %lu\n", maxsize));
+       DEBUG(10, ("recycle: maxsize = %lu\n", (long unsigned int)maxsize));
        
        return maxsize;
 }
@@ -172,7 +172,7 @@ static SMB_OFF_T recycle_minsize(vfs_handle_struct *handle)
        minsize = conv_str_size(lp_parm_const_string(SNUM(handle->conn),
                                            "recycle", "minsize", NULL));
 
-       DEBUG(10, ("recycle: minsize = %lu\n", minsize));
+       DEBUG(10, ("recycle: minsize = %lu\n", (long unsigned int)minsize));
        
        return minsize;
 }