|
From: John M M. <jo...@us...> - 2004-08-03 02:40:39
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/plugins/JoystickTabletPlugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27317/squeak/platforms/Mac OS/plugins/JoystickTabletPlugin Modified Files: sqMacJoystickAndTablet.c Log Message: 3.7.4b3 Compiler warning reduction process. Return 0 if required, flag or removed unused variables, fix ambigous warning messages Index: sqMacJoystickAndTablet.c =================================================================== RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/plugins/JoystickTabletPlugin/sqMacJoystickAndTablet.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sqMacJoystickAndTablet.c 18 Dec 2001 21:18:18 -0000 1.2 --- sqMacJoystickAndTablet.c 3 Aug 2004 02:40:31 -0000 1.3 *************** *** 12,16 **** /* initialize/shutdown */ ! int joystickShutdown() {} /* End of adjustments for pluginized VM */ --- 12,18 ---- /* initialize/shutdown */ ! int joystickShutdown() { ! return 1; ! } /* End of adjustments for pluginized VM */ |