From a07f768080a1227dac807227858fc0c1e8baac78 Mon Sep 17 00:00:00 2001 From: Vern Paxson Date: Sat, 27 Nov 1993 15:01:39 +0000 Subject: [PATCH] lint tweak --- misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc.c b/misc.c index 9336880..4541026 100644 --- a/misc.c +++ b/misc.c @@ -184,7 +184,7 @@ register char *str; for ( c = str; *c; ++c ) ; - copy = yy_flex_alloc( (c - str + 1) * sizeof( char ) ); + copy = (char *) yy_flex_alloc( (c - str + 1) * sizeof( char ) ); if ( copy == NULL ) flexfatal( "dynamic memory failure in copy_string()" ); -- 2.40.0