summaryrefslogtreecommitdiffstats
path: root/ext/esd
diff options
context:
space:
mode:
Diffstat (limited to 'ext/esd')
-rw-r--r--ext/esd/esdmon.c2
-rw-r--r--ext/esd/esdsink.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/esd/esdmon.c b/ext/esd/esdmon.c
index eaa8b097..58111057 100644
--- a/ext/esd/esdmon.c
+++ b/ext/esd/esdmon.c
@@ -372,7 +372,7 @@ static gboolean
gst_esdmon_open_audio (GstEsdmon * src)
{
/* Name used by esound for this connection. */
- const char *connname = "GStreamer";
+ const char connname[] = "GStreamer";
/* Bitmap describing audio format. */
esd_format_t esdformat = ESD_STREAM | ESD_PLAY;
diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c
index 5f4836d0..1f4a9340 100644
--- a/ext/esd/esdsink.c
+++ b/ext/esd/esdsink.c
@@ -253,7 +253,7 @@ gst_esdsink_prepare (GstAudioSink * asink, GstRingBufferSpec * spec)
GstEsdSink *esdsink = GST_ESDSINK (asink);
/* Name used by esound for this connection. */
- const char *connname = "GStreamer";
+ const char connname[] = "GStreamer";
/* Bitmap describing audio format. */
esd_format_t esdformat = ESD_STREAM | ESD_PLAY;