mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-27 04:40:59 +01:00
Paul 28538 / me 28540 / couple of unposted casts:
use char * for pointer arithmetic rather than void *
This commit is contained in:
parent
c8d07027c8
commit
a7bc22ca00
7 changed files with 17 additions and 17 deletions
|
|
@ -260,7 +260,7 @@ inputline(void)
|
|||
int pptlen;
|
||||
pptbuf = unmetafy(promptexpand(ingetcpmptl ? *ingetcpmptl : NULL,
|
||||
0, NULL, NULL, NULL), &pptlen);
|
||||
write_loop(2, (WRITE_ARG_2_T)pptbuf, pptlen);
|
||||
write_loop(2, pptbuf, pptlen);
|
||||
free(pptbuf);
|
||||
}
|
||||
ingetcline = shingetline();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue