From 5fcb8553da8b2e10209dfe020d47ef81da7ed92e Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Wed, 29 May 2002 17:31:01 +0000 Subject: (init_stats): Fixed a spelling mistake where the number of bytes being allocated was incorrect. --- src/stats.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/stats.c b/src/stats.c index 7aa48e2..2c5c774 100644 --- a/src/stats.c +++ b/src/stats.c @@ -1,4 +1,4 @@ -/* $Id: stats.c,v 1.10 2002-05-26 18:53:14 rjkaes Exp $ +/* $Id: stats.c,v 1.11 2002-05-29 17:31:01 rjkaes Exp $ * * This module handles the statistics for tinyproxy. There are only two * public API functions. The reason for the functions, rather than just a @@ -44,7 +44,7 @@ static struct stat_s *stats; void init_stats(void) { - stats = malloc_shared_memory(sizeof(struct stat)); + stats = malloc_shared_memory(sizeof(struct stat_s)); if (!stats) return; -- cgit v1.2.3