From 67c86b5a295327117d14a82b6251bb1a9dca8623 Mon Sep 17 00:00:00 2001 From: pontscho Date: Sun, 2 Sep 2001 17:59:54 +0000 Subject: [PATCH] gcc 3 error fix git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1841 b3059339-0415-0410-9bf9-f77b7e298cf2 --- Gui/Makefile | 2 +- Gui/events.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gui/Makefile b/Gui/Makefile index 765b66b483..e55b1abe27 100644 --- a/Gui/Makefile +++ b/Gui/Makefile @@ -11,7 +11,7 @@ include gui.mak 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 --git a/Gui/events.c b/Gui/events.c index ca514d9fd2..e19b16c660 100644 --- a/Gui/events.c +++ b/Gui/events.c @@ -44,4 +44,4 @@ evName evNames[] = { evHelp, "evHelp" } }; -const int evBoxs = sizeof( evNames ) / sizeof( evName ); +int evBoxs = sizeof( evNames ) / sizeof( evName );