From: Jeremy Allison Date: Thu, 8 Mar 2007 18:43:39 +0000 (+0000) Subject: r21764: Fix warning in debug comment. X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~975 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12c29a8e9bd87550ad7a8e7ceaf4cba59994547a;p=thirdparty%2Fsamba.git r21764: Fix warning in debug comment. Jeremy. --- diff --git a/source/modules/vfs_recycle.c b/source/modules/vfs_recycle.c index 240931fa781..579cc94cf94 100644 --- a/source/modules/vfs_recycle.c +++ b/source/modules/vfs_recycle.c @@ -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; }