From: RĂ©mi Denis-Courmont Date: Sat, 21 Oct 2006 19:30:04 +0000 (+0000) Subject: Attempt to fix dshow build X-Git-Tag: 0.9.0-test0~9827 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=0856d3ae70c252e950b2b9a80ec5e05abc311d8c;p=vlc Attempt to fix dshow build --- diff --git a/modules/access/dshow/dshow.cpp b/modules/access/dshow/dshow.cpp index 46f01b7dde..bbb78f260d 100644 --- a/modules/access/dshow/dshow.cpp +++ b/modules/access/dshow/dshow.cpp @@ -70,12 +70,12 @@ static void ConfigTuner( vlc_object_t *, ICaptureGraphBuilder2 *, /***************************************************************************** * Module descriptor *****************************************************************************/ -static char *ppsz_vdev[] = { "", "none" }; -static char *ppsz_vdev_text[] = { N_("Default"), N_("None") }; -static char *ppsz_adev[] = { "", "none" }; -static char *ppsz_adev_text[] = { N_("Default"), N_("None") }; +static const char *ppsz_vdev[] = { "", "none" }; +static const char *ppsz_vdev_text[] = { N_("Default"), N_("None") }; +static const char *ppsz_adev[] = { "", "none" }; +static const char *ppsz_adev_text[] = { N_("Default"), N_("None") }; static int pi_tuner_input[] = { 0, 1, 2 }; -static char *ppsz_tuner_input_text[] = +static const char *ppsz_tuner_input_text[] = {N_("Default"), N_("Cable"), N_("Antenna")}; static int pi_amtuner_mode[] = { AMTUNER_MODE_DEFAULT, AMTUNER_MODE_TV,