From: Paul Eggert Date: Sun, 8 Jul 2001 19:08:50 +0000 (+0000) Subject: (alloca): Arg is of type size_t, not unsigned. X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=4ae648023c611b9b3607c45ff3689b0a0d66b209;p=chaz%2Ftar (alloca): Arg is of type size_t, not unsigned. --- diff --git a/lib/alloca.c b/lib/alloca.c index 836c503..6ad425a 100644 --- a/lib/alloca.c +++ b/lib/alloca.c @@ -169,7 +169,7 @@ static header *last_alloca_header = NULL; /* -> last alloca header. */ implementations of C, for example under Gould's UTX/32. */ pointer -alloca (unsigned size) +alloca (size_t size) { auto char probe; /* Probes stack depth: */ register char *depth = ADDRESS_FUNCTION (probe);