mirror of
https://github.com/cc65/cc65.git
synced 2025-04-04 06:29:41 +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:
parent
3277ca7880
commit
ffd9db8b61
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user