mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +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:
parent
75b0f4fcde
commit
02be846175
@ -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) {
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user