summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-09-09 17:13:16 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-09-09 17:13:16 +0000
commitbcda5705f92fc221ebf07dbd278c0a09b01dbc2f (patch)
tree1337d704d7a15af7c91f4b54d2868d54f93b7e1d /src
parentf1d1b56d0cfb7a1c2d4a3c7b228c60242e982831 (diff)
downloadxine-lib-bcda5705f92fc221ebf07dbd278c0a09b01dbc2f.tar.gz
xine-lib-bcda5705f92fc221ebf07dbd278c0a09b01dbc2f.tar.bz2
Constantise some strings.
CVS patchset: 8210 CVS date: 2006/09/09 17:13:16
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/audio_out.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c
index c5a171a4f..e533df68a 100644
--- a/src/xine-engine/audio_out.c
+++ b/src/xine-engine/audio_out.c
@@ -17,7 +17,7 @@
* along with self program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: audio_out.c,v 1.203 2006/09/08 20:32:47 miguelfreitas Exp $
+ * $Id: audio_out.c,v 1.204 2006/09/09 17:13:16 dgp85 Exp $
*
* 22-8-2001 James imported some useful AC3 sections from the previous alsa driver.
* (c) 2001 Andy Lo A Foe <andy@alsaplayer.org>
@@ -1998,8 +1998,8 @@ xine_audio_port_t *_x_ao_new_port (xine_t *xine, ao_driver_t *driver,
aos_t *this;
int i, err;
pthread_attr_t pth_attrs;
- static char *resample_modes[] = {"auto", "off", "on", NULL};
- static char *av_sync_methods[] = {"metronom feedback", "resample", NULL};
+ static const char* resample_modes[] = {"auto", "off", "on", NULL};
+ static const char* av_sync_methods[] = {"metronom feedback", "resample", NULL};
this = xine_xmalloc (sizeof (aos_t)) ;