1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-09 01:28:58 +00:00

Another signedness fix

git-svn-id: svn://svn.cc65.org/cc65/trunk@1037 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-10-11 14:53:55 +00:00
parent 3277ca7880
commit ffd9db8b61

View File

@ -595,7 +595,7 @@ int main (int argc, char* argv[])
{ "--version", 0, OptVersion },
};
int I;
unsigned I;
/* Initialize the output file name */
const char* OutputFile = 0;
@ -609,7 +609,7 @@ int main (int argc, char* argv[])
/* Parse the command line */
I = 1;
while (I < (int)ArgCount) {
while (I < ArgCount) {
const char* P;