From: Vern Paxson Date: Fri, 28 Apr 1995 11:39:39 +0000 (+0000) Subject: ANSI C / Solaris tweak X-Git-Tag: flex-2-5-5b~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d888f74fcbb268865b48bcbdbac85023b2a44ad;p=flex ANSI C / Solaris tweak --- diff --git a/misc.c b/misc.c index 61e23d4..32acd97 100644 --- a/misc.c +++ b/misc.c @@ -37,7 +37,7 @@ int value; { char buf[MAXLINE]; - if ( strlen( defname ) > MAXLINE / 2 ) + if ( (int) strlen( defname ) > MAXLINE / 2 ) { format_pinpoint_message( _( "name \"%s\" ridiculously long" ), defname );