changeset 1840:07fd7d1b8cc9

gcc 3 error fix
author pontscho
date Sun, 02 Sep 2001 17:59:54 +0000
parents ebab5d4c261d
children 08f21f4cadd9
files Gui/Makefile Gui/events.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Gui/Makefile	Sun Sep 02 17:51:10 2001 +0000
+++ b/Gui/Makefile	Sun Sep 02 17:59:54 2001 +0000
@@ -11,7 +11,7 @@
 INCDIR  = -I. -I./event -I./wm -I./skin $(GTKINC)
 
 OPTIMIZE =  $(OPTFLAGS) -fomit-frame-pointer \
-            -fexpensive-optimizations -malign-double -fschedule-insns2 -mwide-multiply -Wall
+            -fexpensive-optimizations -malign-double -fschedule-insns2 -Wall
 
 CFLAGS = $(OPTIMIZE) $(INCDIR) $(DEBUG) 
 
--- a/Gui/events.c	Sun Sep 02 17:51:10 2001 +0000
+++ b/Gui/events.c	Sun Sep 02 17:59:54 2001 +0000
@@ -44,4 +44,4 @@
   { evHelp,		 "evHelp"	       }	
  };
 
-const int evBoxs = sizeof( evNames ) / sizeof( evName );
+int evBoxs = sizeof( evNames ) / sizeof( evName );