diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-23 16:16:40 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-23 16:16:40 +0100 |
commit | a6b72ecda7a25bffd0dfe4b654fcce815a146105 (patch) | |
tree | 49f8ab86f9bb72143a5a07d955d03cc5cb9b8ee3 /src | |
parent | 172de9bf22cb530e56335f42b983a69057e0cdec (diff) | |
download | xine-lib-a6b72ecda7a25bffd0dfe4b654fcce815a146105.tar.gz xine-lib-a6b72ecda7a25bffd0dfe4b654fcce815a146105.tar.bz2 |
Mark more array as constants.
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/audio_out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c index 39e3cd1a4..5162c1883 100644 --- a/src/xine-engine/audio_out.c +++ b/src/xine-engine/audio_out.c @@ -2045,8 +2045,8 @@ xine_audio_port_t *_x_ao_new_port (xine_t *xine, ao_driver_t *driver, int i, err; pthread_attr_t pth_attrs; pthread_mutexattr_t attr; - static const char* resample_modes[] = {"auto", "off", "on", NULL}; - static const char* av_sync_methods[] = {"metronom feedback", "resample", NULL}; + static const char *const resample_modes[] = {"auto", "off", "on", NULL}; + static const char *const av_sync_methods[] = {"metronom feedback", "resample", NULL}; this = xine_xmalloc (sizeof (aos_t)) ; |