mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-28 07:00:14 -05: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
|
|
@ -21,44 +21,44 @@
|
|||
#ifndef pixmaps_H
|
||||
#define pixmaps_H
|
||||
|
||||
extern char * Slider1_xpm[];
|
||||
extern char * Slider2_xpm[];
|
||||
extern char * b_blank_xpm[];
|
||||
extern char * b_card1_xpm[];
|
||||
extern char * b_card2_xpm[];
|
||||
extern char * b_card3_xpm[];
|
||||
extern char * b_mute_xpm[];
|
||||
extern char * b_pre1_xpm[];
|
||||
extern char * b_pre2_xpm[];
|
||||
extern char * b_pre3_xpm[];
|
||||
extern char * b_pre4_xpm[];
|
||||
extern char * b_pre5_xpm[];
|
||||
extern char * b_pre6_xpm[];
|
||||
extern char * b_pre7_xpm[];
|
||||
extern char * b_pre8_xpm[];
|
||||
extern char * b_save_xpm[];
|
||||
extern char * b_solo_xpm[];
|
||||
extern char * buttons_xpm[];
|
||||
extern char * empty_xpm[];
|
||||
extern char * empty_linux_xpm[];
|
||||
extern char * iomixer_xpm[];
|
||||
extern char * level_xpm[];
|
||||
extern char * monitor_xpm[];
|
||||
extern char * mute_xpm[];
|
||||
extern char * output_xpm[];
|
||||
extern char * over_xpm[];
|
||||
extern char * peak_xpm[];
|
||||
extern char * solo_xpm[];
|
||||
extern char * iomixer_r_xpm[];
|
||||
extern char * output_r_xpm[];
|
||||
extern char * matrix_white_xpm[];
|
||||
extern char * matrix_black_xpm[];
|
||||
extern char * matrix_yellow_xpm[];
|
||||
extern char * matrix_mute_xpm[];
|
||||
extern char * matrix_grey_xpm[];
|
||||
extern char * matrix_grey_l_xpm[];
|
||||
extern char * matrix_grey_ol_xpm[];
|
||||
extern char * matrix_grey_o_xpm[];
|
||||
extern char const * Slider1_xpm[];
|
||||
extern char const * Slider2_xpm[];
|
||||
extern char const * b_blank_xpm[];
|
||||
extern char const * b_card1_xpm[];
|
||||
extern char const * b_card2_xpm[];
|
||||
extern char const * b_card3_xpm[];
|
||||
extern char const * b_mute_xpm[];
|
||||
extern char const * b_pre1_xpm[];
|
||||
extern char const * b_pre2_xpm[];
|
||||
extern char const * b_pre3_xpm[];
|
||||
extern char const * b_pre4_xpm[];
|
||||
extern char const * b_pre5_xpm[];
|
||||
extern char const * b_pre6_xpm[];
|
||||
extern char const * b_pre7_xpm[];
|
||||
extern char const * b_pre8_xpm[];
|
||||
extern char const * b_save_xpm[];
|
||||
extern char const * b_solo_xpm[];
|
||||
extern char const * buttons_xpm[];
|
||||
extern char const * empty_xpm[];
|
||||
extern char const * empty_linux_xpm[];
|
||||
extern char const * iomixer_xpm[];
|
||||
extern char const * level_xpm[];
|
||||
extern char const * monitor_xpm[];
|
||||
extern char const * mute_xpm[];
|
||||
extern char const * output_xpm[];
|
||||
extern char const * over_xpm[];
|
||||
extern char const * peak_xpm[];
|
||||
extern char const * solo_xpm[];
|
||||
extern char const * iomixer_r_xpm[];
|
||||
extern char const * output_r_xpm[];
|
||||
extern char const * matrix_white_xpm[];
|
||||
extern char const * matrix_black_xpm[];
|
||||
extern char const * matrix_yellow_xpm[];
|
||||
extern char const * matrix_mute_xpm[];
|
||||
extern char const * matrix_grey_xpm[];
|
||||
extern char const * matrix_grey_l_xpm[];
|
||||
extern char const * matrix_grey_ol_xpm[];
|
||||
extern char const * matrix_grey_o_xpm[];
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue