From: Schuyler, D. <Dav...@di...> - 2002-02-23 02:30:00
|
Hi, Here are some more minor changes that reduce compiler warning/errors. Index: config/WIN_NT.MK =================================================================== RCS file: /cvsroot/chromium/cr/config/WIN_NT.MK,v retrieving revision 1.7 diff -w -r1.7 WIN_NT.MK 14c14 < CXX_DEBUG_FLAGS += /MDd /Yd /Z7 /GZ --- > CXX_DEBUG_FLAGS += /MDd /Yd /Z7 19c19 < C_DEBUG_FLAGS += /MDd /Yd /Z7 /GZ --- > C_DEBUG_FLAGS += /MDd /Yd /Z7 Index: spu/array/arrayspu.c =================================================================== RCS file: /cvsroot/chromium/cr/spu/array/arrayspu.c,v retrieving revision 1.2 diff -w -r1.2 arrayspu.c 19c19 < int unit; --- > unsigned int unit; Index: state_tracker/state_client.c =================================================================== RCS file: /cvsroot/chromium/cr/state_tracker/state_client.c,v retrieving revision 1.2 diff -w -r1.2 state_client.c 48c48 < int i; --- > unsigned int i; Index: state_tracker/state_current.c =================================================================== RCS file: /cvsroot/chromium/cr/state_tracker/state_current.c,v retrieving revision 1.2 diff -w -r1.2 state_current.c 20c20 < int i; --- > unsigned int i; 237c237 < int i,j; --- > unsigned int i,j; Index: state_tracker/state_texture.c =================================================================== RCS file: /cvsroot/chromium/cr/state_tracker/state_texture.c,v retrieving revision 1.2 diff -w -r1.2 state_texture.c 31c31 < int i, h; --- > unsigned int i, h; 1049c1049 < int i; --- > unsigned int i; 1200c1200 < int i; --- > unsigned int i; 1501c1501 < int i; --- > unsigned int i; 1663a1664,1665 > { > unsigned int i; 1668a1671 > } 1683c1686 < int i; --- > unsigned int i; 1887c1890 < int i; --- > unsigned int i; 3739c3742,3743 < int i,j; --- > unsigned int i; > int j; Index: state_tracker/state_transform.c =================================================================== RCS file: /cvsroot/chromium/cr/state_tracker/state_transform.c,v retrieving revision 1.2 diff -w -r1.2 state_transform.c 69c69 < int i; --- > unsigned int i; |