svn commit: samba r21764 - in branches: SAMBA_3_0/source/modules SAMBA_3_0_25/source/modules

jra at samba.org jra at samba.org
Thu Mar 8 18:43:40 GMT 2007


Author: jra
Date: 2007-03-08 18:43:39 +0000 (Thu, 08 Mar 2007)
New Revision: 21764

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=21764

Log:
Fix warning in debug comment.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/modules/vfs_recycle.c
   branches/SAMBA_3_0_25/source/modules/vfs_recycle.c


Changeset:
Modified: branches/SAMBA_3_0/source/modules/vfs_recycle.c
===================================================================
--- branches/SAMBA_3_0/source/modules/vfs_recycle.c	2007-03-08 18:05:55 UTC (rev 21763)
+++ branches/SAMBA_3_0/source/modules/vfs_recycle.c	2007-03-08 18:43:39 UTC (rev 21764)
@@ -160,7 +160,7 @@
 	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 @@
 	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;
 }

Modified: branches/SAMBA_3_0_25/source/modules/vfs_recycle.c
===================================================================
--- branches/SAMBA_3_0_25/source/modules/vfs_recycle.c	2007-03-08 18:05:55 UTC (rev 21763)
+++ branches/SAMBA_3_0_25/source/modules/vfs_recycle.c	2007-03-08 18:43:39 UTC (rev 21764)
@@ -160,7 +160,7 @@
 	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 @@
 	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;
 }



More information about the samba-cvs mailing list