From a520364eb298991fee0716b49646518090446b19 Mon Sep 17 00:00:00 2001 From: phk Date: Mon, 3 Jul 2006 14:37:51 +0000 Subject: [PATCH] s/unsigned/size_t/ git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@281 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/bin/varnishd/storage_file.c | 2 +- varnish-cache/bin/varnishd/storage_malloc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/varnish-cache/bin/varnishd/storage_file.c b/varnish-cache/bin/varnishd/storage_file.c index 348a696e..9fc78f4d 100644 --- a/varnish-cache/bin/varnishd/storage_file.c +++ b/varnish-cache/bin/varnishd/storage_file.c @@ -465,7 +465,7 @@ smf_open(struct stevedore *st) /*--------------------------------------------------------------------*/ 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; diff --git a/varnish-cache/bin/varnishd/storage_malloc.c b/varnish-cache/bin/varnishd/storage_malloc.c index f6d0eba9..167ed7da 100644 --- a/varnish-cache/bin/varnishd/storage_malloc.c +++ b/varnish-cache/bin/varnishd/storage_malloc.c @@ -16,7 +16,7 @@ struct sma { }; static struct storage * -sma_alloc(struct stevedore *st, unsigned size) +sma_alloc(struct stevedore *st, size_t size) { struct sma *sma; -- 2.39.5