diff options
author | phintuka <phintuka> | 2012-03-19 09:50:33 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2012-03-19 09:50:33 +0000 |
commit | cde0dd26555da8af4438e66ce7dc8036bba74f5a (patch) | |
tree | b966cfc1ebe21419b64ce8c9241ac3a388f74b71 | |
parent | 650ba49b5314351f351e4c57be7c5f3b2b9b9b45 (diff) | |
download | xineliboutput-cde0dd26555da8af4438e66ce7dc8036bba74f5a.tar.gz xineliboutput-cde0dd26555da8af4438e66ce7dc8036bba74f5a.tar.bz2 |
const char * -> const char []
-rw-r--r-- | setup_menu.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/setup_menu.c b/setup_menu.c index d9c623b1..bb976ea5 100644 --- a/setup_menu.c +++ b/setup_menu.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: setup_menu.c,v 1.86 2012-03-13 13:05:14 phintuka Exp $ + * $Id: setup_menu.c,v 1.87 2012-03-19 09:50:33 phintuka Exp $ * */ @@ -36,13 +36,13 @@ namespace XinelibOutputSetupMenu { //--- Setup Menu ------------------------------------------------------------- -const char *ModeLineChars = +const char ModeLineChars[] = " 0123456789+-hvsync."; -const char *DriverNameChars = +const char DriverNameChars[] = " abcdefghijklmnopqrstuvwxyz0123456789-.,#~:;"; -const char *OptionsChars = +const char OptionsChars[] = "=.,abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; -const char *LangNameChars = +const char LangNameChars[] = "abcdefghijklmnopqrstuvwxyz"; const char *controls[] = |