r281 - trunk/varnish-cache/bin/varnishd

phk at projects.linpro.no phk at projects.linpro.no
Mon Jul 3 16:37:51 CEST 2006


Author: phk
Date: 2006-07-03 16:37:51 +0200 (Mon, 03 Jul 2006)
New Revision: 281

Modified:
   trunk/varnish-cache/bin/varnishd/storage_file.c
   trunk/varnish-cache/bin/varnishd/storage_malloc.c
Log:
s/unsigned/size_t/


Modified: trunk/varnish-cache/bin/varnishd/storage_file.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/storage_file.c	2006-07-03 14:36:03 UTC (rev 280)
+++ trunk/varnish-cache/bin/varnishd/storage_file.c	2006-07-03 14:37:51 UTC (rev 281)
@@ -465,7 +465,7 @@
 /*--------------------------------------------------------------------*/
 
 static struct storage *
-smf_alloc(struct stevedore *st, unsigned size)
+smf_alloc(struct stevedore *st, size_t size)
 {
 	struct smf *smf;
 	struct smf_sc *sc = st->priv;

Modified: trunk/varnish-cache/bin/varnishd/storage_malloc.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/storage_malloc.c	2006-07-03 14:36:03 UTC (rev 280)
+++ trunk/varnish-cache/bin/varnishd/storage_malloc.c	2006-07-03 14:37:51 UTC (rev 281)
@@ -16,7 +16,7 @@
 };
 
 static struct storage *
-sma_alloc(struct stevedore *st, unsigned size)
+sma_alloc(struct stevedore *st, size_t size)
 {
 	struct sma *sma;
 




More information about the varnish-commit mailing list