gst/: change some char* into char[]

Original commit message from CVS:
* gst/gst.c:
* gst/gst_private.h:
change some char* into char[]
This commit is contained in:
Stefan Kost 2005-12-16 21:59:12 +00:00
parent ab0fa35575
commit e6a78b9709
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2005-12-16 Stefan Kost <ensonic@users.sf.net>
* gst/gst.c:
* gst/gst_private.h:
change some char* into char[]
2005-12-16 Wim Taymans <wim@fluendo.com>
* gst/gstregistryxml.c: (load_feature):

View file

@ -131,7 +131,7 @@ static gboolean parse_goption_arg (const gchar * s_opt,
static GSList *preload_plugins = NULL;
const gchar *g_log_domain_gstreamer = "GStreamer";
const gchar g_log_domain_gstreamer[] = "GStreamer";
static void
debug_log_handler (const gchar * log_domain,

View file

@ -30,7 +30,7 @@
/* This needs to be before glib.h, since it might be used in inline
* functions */
extern const char *g_log_domain_gstreamer;
extern const char g_log_domain_gstreamer[];
#include <glib.h>