From dca5b5ca2e3687f27ebf589fe3855966932840d8 Mon Sep 17 00:00:00 2001 From: rsc Date: Fri, 10 Aug 2007 17:17:42 +0000 Subject: avoid assignments in declarations --- umalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'umalloc.c') diff --git a/umalloc.c b/umalloc.c index 3473c79..30f970d 100644 --- a/umalloc.c +++ b/umalloc.c @@ -19,7 +19,7 @@ union header { typedef union header Header; static Header base; -static Header *freep = 0; +static Header *freep; void free(void *ap) -- cgit v1.2.3