Removed cast made superfluous by added newstr to string.h
authorkeie <none@none>
Mon, 21 Jan 1985 23:51:33 +0000 (23:51 +0000)
committerkeie <none@none>
Mon, 21 Jan 1985 23:51:33 +0000 (23:51 +0000)
lang/basic/lib/chr.c

index c2b4dc4..b4f74da 100644 (file)
@@ -12,6 +12,6 @@ int i;
                error(3);
        buf[0]=i;
        buf[1]=0;
-       s= (String *) _newstr(buf);
+       s= _newstr(buf);
        return(s);
 }