|
From: Andre R. <and...@us...> - 2004-10-31 11:58:39
|
Update of /cvsroot/frontierkernel/Frontier/Common/IOAToolkit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23863 Modified Files: ioapopup.c Log Message: Fix GCC compiler warning about disposehandle: Don't use local implementation when compiling Frontier because it's already defined in memory.h. Index: ioapopup.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/IOAToolkit/ioapopup.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ioapopup.c 29 Oct 2004 20:22:01 -0000 1.3 --- ioapopup.c 31 Oct 2004 11:58:27 -0000 1.4 *************** *** 147,154 **** ! static void disposehandle (Handle h) { if (h != nil) DisposeHandle (h); } /*disposehandle*/ --- 147,158 ---- ! #ifndef isFrontier ! ! static void disposehandle (Handle h) { /* already defined in memory.c when compiling Frontier */ if (h != nil) DisposeHandle (h); } /*disposehandle*/ + + #endif |