Allow for warning-free build of ca65 with MS VC on warning level 3.

This commit is contained in:
Oliver Schmidt
2013-04-07 22:17:24 +02:00
parent 29c522fc5a
commit 365668785c
3 changed files with 3 additions and 3 deletions

View File

@@ -1031,7 +1031,7 @@ static ExprNode* Factor (void)
break;
case TOK_TIME:
N = GenLiteralExpr (time (0));
N = GenLiteralExpr ((long) time (0));
NextTok ();
break;