From 52a627589aff4ba2328af96a5b953c4334831b7e Mon Sep 17 00:00:00 2001 From: keie Date: Mon, 21 Jan 1985 23:51:33 +0000 Subject: [PATCH] Removed cast made superfluous by added newstr to string.h --- lang/basic/lib/chr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.34.1