1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +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;
unsigned I;
int I;
/* Get the program name from argv[0] but strip a path */
if (*(aArgVec)[0] == 0) {

View File

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