diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-23 15:48:45 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-23 15:48:45 +0100 |
commit | a3e7918108fb1b0d1ccee8cd0de8ad764cf62a3e (patch) | |
tree | 621a4b8defbaba369cfd376260b828801d70b688 /src | |
parent | 494227b2c50100c9699f484f15e42fe0af20c6d2 (diff) | |
download | xine-lib-a3e7918108fb1b0d1ccee8cd0de8ad764cf62a3e.tar.gz xine-lib-a3e7918108fb1b0d1ccee8cd0de8ad764cf62a3e.tar.bz2 |
Mark the digit array constant.
Diffstat (limited to 'src')
-rw-r--r-- | src/input/mms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/mms.c b/src/input/mms.c index 37e7ff395..79dd60987 100644 --- a/src/input/mms.c +++ b/src/input/mms.c @@ -601,7 +601,7 @@ static int mms_tcp_connect(mms_t *this) { } static void mms_gen_guid(char guid[]) { - static char digit[16] = "0123456789ABCDEF"; + static const char digit[16] = "0123456789ABCDEF"; int i = 0; srand(time(NULL)); |