summaryrefslogtreecommitdiff
path: root/Src/Zle/compresult.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/Zle/compresult.c
parent915e6ff66ad4e64c66eb9be3ced6bc6fdd26c0cf (diff)
downloadzsh-e79af955f0620a699b01f11b584788404ba81767.tar.gz
zsh-e79af955f0620a699b01f11b584788404ba81767.zip
Got rid of some unsigned-char/char pointer casts.
Diffstat (limited to 'Src/Zle/compresult.c')
-rw-r--r--Src/Zle/compresult.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Src/Zle/compresult.c b/Src/Zle/compresult.c
index 84e276747..4c31dab1b 100644
--- a/Src/Zle/compresult.c
+++ b/Src/Zle/compresult.c
@@ -470,7 +470,7 @@ cline_str(Cline l, int ins, int *csp, LinkList posl)
* requested, we copy it and remove from the line. */
char *r = zalloc((i = zlemetacs - ocs) + 1);
- memcpy(r, (char *) (zlemetaline + ocs), i);
+ memcpy(r, zlemetaline + ocs, i);
r[i] = '\0';
zlemetacs = ocs;
foredel(i);
@@ -629,7 +629,7 @@ instmatch(Cmatch m, int *scs)
ocs += l;
}
lastprebr = (char *) zalloc(pcs - a + 1);
- memcpy(lastprebr, (char *) zlemetaline + a, pcs - a);
+ memcpy(lastprebr, zlemetaline + a, pcs - a);
lastprebr[pcs - a] = '\0';
zlemetacs = ocs;
}
@@ -671,7 +671,7 @@ instmatch(Cmatch m, int *scs)
}
if (brend) {
lastpostbr = (char *) zalloc(zlemetacs - brb + 1);
- memcpy(lastpostbr, (char *) zlemetaline + brb, zlemetacs - brb);
+ memcpy(lastpostbr, zlemetaline + brb, zlemetacs - brb);
lastpostbr[zlemetacs - brb] = '\0';
}
lastend = zlemetacs;
@@ -771,7 +771,7 @@ do_ambiguous(void)
/* First remove the old string from the line. */
tcs = zlemetacs;
zlemetacs = wb;
- memcpy(old, (char *) zlemetaline + wb, we - wb);
+ memcpy(old, zlemetaline + wb, we - wb);
foredel(we - wb);
/* Now get the unambiguous string and insert it into the line. */
@@ -798,7 +798,7 @@ do_ambiguous(void)
/* la is non-zero if listambiguous may be used. Copying and
* comparing the line looks like BFI but it is the easiest
* solution. Really. */
- la = (zlemetall != origll || strncmp(origline, (char *) zlemetaline, zlemetall));
+ la = (zlemetall != origll || strncmp(origline, zlemetaline, zlemetall));
/* If REC_EXACT and AUTO_MENU are set and what we inserted is an *
* exact match, we want menu completion the next time round *