Another signedness fix
git-svn-id: svn://svn.cc65.org/cc65/trunk@1037 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -595,7 +595,7 @@ int main (int argc, char* argv[])
|
|||||||
{ "--version", 0, OptVersion },
|
{ "--version", 0, OptVersion },
|
||||||
};
|
};
|
||||||
|
|
||||||
int I;
|
unsigned I;
|
||||||
|
|
||||||
/* Initialize the output file name */
|
/* Initialize the output file name */
|
||||||
const char* OutputFile = 0;
|
const char* OutputFile = 0;
|
||||||
@@ -609,7 +609,7 @@ int main (int argc, char* argv[])
|
|||||||
|
|
||||||
/* Parse the command line */
|
/* Parse the command line */
|
||||||
I = 1;
|
I = 1;
|
||||||
while (I < (int)ArgCount) {
|
while (I < ArgCount) {
|
||||||
|
|
||||||
const char* P;
|
const char* P;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user