# HG changeset patch # User pontscho # Date 999453594 0 # Node ID 07fd7d1b8cc9ff6d7d3ea6dd9e431f347029220e # Parent ebab5d4c261d310d81b4b6abc62e5e3b3aade1c0 gcc 3 error fix diff -r ebab5d4c261d -r 07fd7d1b8cc9 Gui/Makefile --- 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) diff -r ebab5d4c261d -r 07fd7d1b8cc9 Gui/events.c --- 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 );