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
This commit is contained in:
@@ -1503,7 +1503,7 @@ void face_draw()
|
||||
Image *img=NULL, *img_old = NULL;
|
||||
IMG_BrushPtr brush;
|
||||
IMG_CanvasPtr canvas = 0;
|
||||
int rowBytes, face_index;
|
||||
unsigned int rowBytes, face_index;
|
||||
char *warn_packed_file = 0;
|
||||
float uv[2], uv_old[2];
|
||||
extern VPaint Gvp;
|
||||
|
||||
Reference in New Issue
Block a user