Fixed a compilation warning

This commit is contained in:
Pierre Pronchery 2006-10-22 13:15:33 +00:00
parent d3fc4dc131
commit c1170fcb7d
3 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@ BINDIR = $(PREFIX)/bin
INCLUDEDIR= $(PREFIX)/include INCLUDEDIR= $(PREFIX)/include
CC = cc CC = cc
CFLAGSF = -W CFLAGSF = -W
CFLAGS = -g CFLAGS = -Wall -ansi -g
RM = rm -f RM = rm -f
MKDIR = mkdir -p MKDIR = mkdir -p
INSTALL = install INSTALL = install

View File

@ -52,4 +52,5 @@ int main(int argc, char * argv[])
default: default:
return _usage(); return _usage();
} }
return 0;
} }

View File

@ -1,6 +1,6 @@
targets=c99 targets=c99
cflags_force=-W cflags_force=-W
cflags=-g cflags=-Wall -ansi -g
[c99] [c99]
type=binary type=binary