1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-03 07:30:52 +00:00

Fix some gcc warnings

git-svn-id: svn://svn.cc65.org/cc65/trunk@167 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-07-18 22:32:50 +00:00
parent e3a6f3b6e1
commit 110b322903
2 changed files with 3 additions and 3 deletions

View File

@ -379,7 +379,7 @@ void DoConditionals (void)
break;
default:
// Skip tokens
/* Skip tokens */
NextTok ();
}

View File

@ -263,7 +263,7 @@ static void DoASCIIZ (void)
ErrorSkip (ERR_STRCON_EXPECTED);
return;
}
EmitData (SVal, strlen (SVal));
EmitData ((unsigned char*) SVal, strlen (SVal));
NextTok ();
if (Tok == TOK_COMMA) {
NextTok ();
@ -298,7 +298,7 @@ static void DoByte (void)
while (1) {
if (Tok == TOK_STRCON) {
/* A string */
EmitData (SVal, strlen (SVal));
EmitData ((unsigned char*) SVal, strlen (SVal));
NextTok ();
} else {
EmitByte (Expression ());