From: keie Date: Mon, 21 Jan 1985 23:51:33 +0000 (+0000) Subject: Removed cast made superfluous by added newstr to string.h X-Git-Tag: release-5-5~5738 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=52a627589aff4ba2328af96a5b953c4334831b7e;p=ack.git Removed cast made superfluous by added newstr to string.h --- diff --git a/lang/basic/lib/chr.c b/lang/basic/lib/chr.c index c2b4dc45e..b4f74da1a 100644 --- a/lang/basic/lib/chr.c +++ b/lang/basic/lib/chr.c @@ -12,6 +12,6 @@ int i; error(3); buf[0]=i; buf[1]=0; - s= (String *) _newstr(buf); + s= _newstr(buf); return(s); }