1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +00:00

Fix signed/unsigned comparisons

git-svn-id: svn://svn.cc65.org/cc65/trunk@931 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-09-15 11:39:07 +00:00
parent 75b0f4fcde
commit 02be846175
2 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ void InitCmdLine (int* aArgCount, char** aArgVec[], const char* aProgName)
*/ */
{ {
CmdLine L; CmdLine L;
unsigned I; int I;
/* Get the program name from argv[0] but strip a path */ /* Get the program name from argv[0] but strip a path */
if (*(aArgVec)[0] == 0) { if (*(aArgVec)[0] == 0) {

View File

@ -2,7 +2,7 @@
# gcc Makefile for the binutils common stuff # gcc Makefile for the binutils common stuff
# #
CFLAGS = -g -O2 -Wall CFLAGS = -g -O2 -Wall -W
CC = gcc CC = gcc
LDFLAGS = LDFLAGS =
LIB = common.a LIB = common.a