summaryrefslogtreecommitdiff
path: root/lib/alloca.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-08-30 19:19:02 +0000
committerJim Meyering <jim@meyering.net>2001-08-30 19:19:02 +0000
commit3b57acb098d23f2c5653a1429e12ac89384a750c (patch)
tree25dac0b60859fafb76ad5bb67e016f3b4e5b66e0 /lib/alloca.c
parent8a1213f73f77be3d6741fef091bcbb6c4cbfeacb (diff)
downloadcoreutils-3b57acb098d23f2c5653a1429e12ac89384a750c.tar.xz
(alloca): Arg is of type size_t, not unsigned.
Diffstat (limited to 'lib/alloca.c')
-rw-r--r--lib/alloca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/alloca.c b/lib/alloca.c
index 836c50319..6ad425a4c 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);