summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makefile.unix
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-06-02 18:07:28 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-06-02 18:07:28 +0000
commitab26294b3f2345f1b8ad8a4c091389c7d66bceb5 (patch)
treed5e69709284703c6d908798f039c8eaeb9534e24 /crawl-ref/source/makefile.unix
parent77bd894ea2391d0575ff39afac149ee4e54adc2c (diff)
downloadcrawl-ref-ab26294b3f2345f1b8ad8a4c091389c7d66bceb5.tar.gz
crawl-ref-ab26294b3f2345f1b8ad8a4c091389c7d66bceb5.zip
Fixed silly type-conversion bugs I introduced, added -Wconversion to
makefile.unix to catch these problems sooner. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1513 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/makefile.unix')
-rw-r--r--crawl-ref/source/makefile.unix2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/makefile.unix b/crawl-ref/source/makefile.unix
index f67953792c..1763e19458 100644
--- a/crawl-ref/source/makefile.unix
+++ b/crawl-ref/source/makefile.unix
@@ -87,7 +87,7 @@ LIB = -lncurses -L$(LUASRC) -l$(LUALIB) $(LIBDBM)
INCLUDES := $(INCLUDES) -Iutil -I. -I$(LUASRC) $(EXTRA_INCLUDES)
CFWARN := -Wall -Wwrite-strings \
- -Wshadow -pedantic
+ -Wshadow -Wconversion -pedantic
CFOTHERS := -fsigned-char -D$(OS_TYPE) $(EXTRA_FLAGS)