From 31b5ee97f25998d0b60ae0e0afc647f9a3b20f57 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Mon, 22 Oct 2007 15:16:35 +0200 Subject: [PATCH] hdspmixer - Fix compilation with gcc4.3 Fixed the doubled parameter 'w'. Yeah, gcc 4.3 is picky. --- hdspmixer/src/HDSPMixerSetup.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hdspmixer/src/HDSPMixerSetup.h b/hdspmixer/src/HDSPMixerSetup.h index 78d010d..21ffbb2 100644 --- a/hdspmixer/src/HDSPMixerSetup.h +++ b/hdspmixer/src/HDSPMixerSetup.h @@ -54,7 +54,7 @@ public: int level_val; int numbers_val; int rmsplus3_val; - HDSPMixerSetup(int w, int h, char *label, HDSPMixerWindow *w); + HDSPMixerSetup(int w, int h, char *label, HDSPMixerWindow *win); HDSPMixerWindow *basew; void updateValues(); }; -- 2.47.1