about summary refs log tree commit diff
path: root/Src/input.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2005-11-15 08:44:17 +0000
committerWayne Davison <wayned@users.sourceforge.net>2005-11-15 08:44:17 +0000
commite79af955f0620a699b01f11b584788404ba81767 (patch)
tree3cea0f78df60c7622321e1835ff8b67b347e796f /Src/input.c
parent915e6ff66ad4e64c66eb9be3ced6bc6fdd26c0cf (diff)
downloadzsh-e79af955f0620a699b01f11b584788404ba81767.tar.gz
zsh-e79af955f0620a699b01f11b584788404ba81767.tar.xz
zsh-e79af955f0620a699b01f11b584788404ba81767.zip
Got rid of some unsigned-char/char pointer casts.
Diffstat (limited to 'Src/input.c')
-rw-r--r--Src/input.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Src/input.c b/Src/input.c
index ef3472259..546ed2f6a 100644
--- a/Src/input.c
+++ b/Src/input.c
@@ -275,8 +275,7 @@ inputline(void)
 	int flags = ZLRF_HISTORY|ZLRF_NOSETTY;
 	if (isset(IGNOREEOF))
 	    flags |= ZLRF_IGNOREEOF;
-	ingetcline = (char *)zlereadptr(ingetcpmptl, ingetcpmptr, flags,
-					context);
+	ingetcline = zlereadptr(ingetcpmptl, ingetcpmptr, flags, context);
 	histdone |= HISTFLAG_SETTY;
     }
     if (!ingetcline) {