Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2005-04-28 18:37:15 +0400
committerKent Mein <mein@cs.umn.edu>2005-04-28 18:37:15 +0400
commitb705434c72ec268e0a2c23124d679a7d1b8c0a69 (patch)
treede5b55174c0493f7fa0dfca1ef679025444aec9c /source/blender/readblenfile
parent1d97a448cb2c6e67fa0fa2ceba311d141bed3951 (diff)
A couple more simple gcc4.X warnings fixed.
softbody.c I removed an unused var. text.c added return values to 2 return statements that didn't have anything. Makefile added $(FIX_STUBS_WARNINGS) to CFLAGS for the stub. source/blender/src/editface.c fixed up int vs unsigned int stuff source/blender/src/resources.c had two vars declared as unsigned char * and then inputs to them were cast as char * so updated the casts. Kent
Diffstat (limited to 'source/blender/readblenfile')
-rw-r--r--source/blender/readblenfile/stub/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/readblenfile/stub/Makefile b/source/blender/readblenfile/stub/Makefile
index 04c6b0e5f8d..c5a9570522f 100644
--- a/source/blender/readblenfile/stub/Makefile
+++ b/source/blender/readblenfile/stub/Makefile
@@ -40,7 +40,8 @@ ifeq ($(OS),$(findstring $(OS), "beos darwin freebsd linux openbsd solaris windo
CFLAGS += -funsigned-char
endif
-CFLAGS += $(LEVEL_2_C_WARNINGS)
+CFLAGS += $(LEVEL_2_C_WARNINGS)
+CFLAGS += $(FIX_STUBS_WARNINGS)
# path to our own external headerfiles
CPPFLAGS += -I..