diff options
| author | Wayne Davison <wayned@users.sourceforge.net> | 2005-11-15 08:44:17 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@users.sourceforge.net> | 2005-11-15 08:44:17 +0000 |
| commit | e79af955f0620a699b01f11b584788404ba81767 (patch) | |
| tree | 3cea0f78df60c7622321e1835ff8b67b347e796f /Src/input.c | |
| parent | fix completion of -F option (diff) | |
| download | zsh-e79af955f0620a699b01f11b584788404ba81767.tar zsh-e79af955f0620a699b01f11b584788404ba81767.tar.gz zsh-e79af955f0620a699b01f11b584788404ba81767.tar.bz2 zsh-e79af955f0620a699b01f11b584788404ba81767.tar.lz zsh-e79af955f0620a699b01f11b584788404ba81767.tar.xz zsh-e79af955f0620a699b01f11b584788404ba81767.tar.zst zsh-e79af955f0620a699b01f11b584788404ba81767.zip | |
Got rid of some unsigned-char/char pointer casts.
Diffstat (limited to 'Src/input.c')
| -rw-r--r-- | Src/input.c | 3 |
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) { |
