Fixed a few compiler warnings
git-svn-id: svn://svn.cc65.org/cc65/trunk@935 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
e67f4dcbd6
commit
0b5c5e2e36
3 changed files with 4 additions and 3 deletions
|
@ -70,7 +70,8 @@ static const char* LibName = 0;
|
|||
/* The library header */
|
||||
static LibHeader Header = {
|
||||
LIB_MAGIC,
|
||||
LIB_VERSION
|
||||
LIB_VERSION,
|
||||
0, 0
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -77,7 +77,7 @@ static void Usage (void)
|
|||
int main (int argc, char* argv [])
|
||||
/* Assembler main program */
|
||||
{
|
||||
int I;
|
||||
unsigned I;
|
||||
|
||||
/* Initialize the cmdline module */
|
||||
InitCmdLine (&argc, &argv, "ar65");
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# Library dir
|
||||
COMMON = ../common
|
||||
|
||||
CFLAGS = -g -O2 -Wall -I$(COMMON)
|
||||
CFLAGS = -g -O2 -Wall -W -I$(COMMON)
|
||||
CC = gcc
|
||||
EBIND = emxbind
|
||||
LDFLAGS =
|
||||
|
|
Loading…
Add table
Reference in a new issue