From: Takashi Iwai Date: Mon, 22 Oct 2007 13:16:35 +0000 (+0200) Subject: hdspmixer - Fix compilation with gcc4.3 X-Git-Tag: v1.0.16rc1~4 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=31b5ee97f25998d0b60ae0e0afc647f9a3b20f57;p=alsa-tools.git hdspmixer - Fix compilation with gcc4.3 Fixed the doubled parameter 'w'. Yeah, gcc 4.3 is picky. --- 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(); };