From 6aa74fcf5bc5f6b209b578754fc098714bc8485d Mon Sep 17 00:00:00 2001
From: Denis Vlasenko <vda.linux@googlemail.com>
Date: Thu, 21 Feb 2008 04:35:14 +0000
Subject: ash: s/ckzmalloc/ckzalloc/

---
 shell/ash.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'shell')

diff --git a/shell/ash.c b/shell/ash.c
index 10c0b6110..9c762e2ed 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -8887,7 +8887,7 @@ pushstring(char *s, void *ap)
 	INT_OFF;
 /*dprintf("*** calling pushstring: %s, %d\n", s, len);*/
 	if (parsefile->strpush) {
-		sp = ckzmalloc(sizeof(struct strpush));
+		sp = ckzalloc(sizeof(struct strpush));
 		sp->prev = parsefile->strpush;
 		parsefile->strpush = sp;
 	} else
-- 
cgit v1.2.3