mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2026-03-14 05:33:48 -04:00
hdspmixer: Fix compiler warnings.
All compiler warnings were caused by a conversion from "foo" to a char pointer. Given that the string itself really is constant, simply add the keyword to make g++ happy. Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
646eacb626
commit
c3349a84ea
55 changed files with 130 additions and 130 deletions
|
|
@ -22,7 +22,7 @@
|
|||
#include "HDSPMixerAbout.h"
|
||||
|
||||
|
||||
HDSPMixerAbout::HDSPMixerAbout(int w, int h, char *label, HDSPMixerWindow *win):Fl_Double_Window(w, h, label)
|
||||
HDSPMixerAbout::HDSPMixerAbout(int w, int h, char const *label, HDSPMixerWindow *win):Fl_Double_Window(w, h, label)
|
||||
{
|
||||
basew = win;
|
||||
text = new HDSPMixerAboutText(10,10,w-20,h-20);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue