1
0
Fork 0
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:
Peter Stephenson 2010-12-20 10:28:43 +00:00
parent c8d07027c8
commit a7bc22ca00
7 changed files with 17 additions and 17 deletions

View file

@ -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();