summaryrefslogtreecommitdiffstats
path: root/ext/esd
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2005-12-16 21:57:51 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2005-12-16 21:57:51 +0000
commitdfc939828d6bd07a0584b00d61ac9c9cfa435edc (patch)
tree4089c078cdeb96e315420e3e2b18ca2f405485a5 /ext/esd
parent342fc463161bf0ae113bfece910ab14b23607126 (diff)
change some char* into char[]
Original commit message from CVS: * ext/esd/esdmon.c: (gst_esdmon_open_audio): * ext/esd/esdsink.c: (gst_esdsink_prepare): * gst/multipart/multipartdemux.c: change some char* into char[]
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;