r2630 - trunk/varnish-cache/bin/varnishd

phk at projects.linpro.no phk at projects.linpro.no
Wed Apr 16 09:58:43 CEST 2008


Author: phk
Date: 2008-04-16 09:58:43 +0200 (Wed, 16 Apr 2008)
New Revision: 2630

Modified:
   trunk/varnish-cache/bin/varnishd/storage_malloc.c
Log:
SIZE_MAX is not spelled SIZE_T_MAX in polite company.



Modified: trunk/varnish-cache/bin/varnishd/storage_malloc.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/storage_malloc.c	2008-04-08 15:34:57 UTC (rev 2629)
+++ trunk/varnish-cache/bin/varnishd/storage_malloc.c	2008-04-16 07:58:43 UTC (rev 2630)
@@ -43,7 +43,7 @@
 #include "cache.h"
 #include "stevedore.h"
 
-static size_t			sma_max = SIZE_T_MAX;
+static size_t			sma_max = SIZE_MAX;
 static MTX			sma_mtx;
 
 struct sma {




More information about the varnish-commit mailing list