From 815bc92148939ce369585c59d3af730f69833844 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Wed, 29 Oct 2003 19:17:30 +0000 Subject: a la 19209: zcalloc -> zshcalloc --- Src/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src/input.c') diff --git a/Src/input.c b/Src/input.c index 08ad4eb87..3867474b8 100644 --- a/Src/input.c +++ b/Src/input.c @@ -380,7 +380,7 @@ inungetc(int c) * can't back up where we want to. Instead, we just push it * onto the input stack as an extra character. */ - char *cback = (char *)zcalloc(2); + char *cback = (char *)zshcalloc(2); cback[0] = (char) c; inpush(cback, INP_FREE|INP_CONT, NULL); } -- cgit 1.4.1