mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
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:
parent
ab0fa35575
commit
e6a78b9709
3 changed files with 8 additions and 2 deletions
|
@ -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>
|
2005-12-16 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/gstregistryxml.c: (load_feature):
|
* gst/gstregistryxml.c: (load_feature):
|
||||||
|
|
|
@ -131,7 +131,7 @@ static gboolean parse_goption_arg (const gchar * s_opt,
|
||||||
|
|
||||||
static GSList *preload_plugins = NULL;
|
static GSList *preload_plugins = NULL;
|
||||||
|
|
||||||
const gchar *g_log_domain_gstreamer = "GStreamer";
|
const gchar g_log_domain_gstreamer[] = "GStreamer";
|
||||||
|
|
||||||
static void
|
static void
|
||||||
debug_log_handler (const gchar * log_domain,
|
debug_log_handler (const gchar * log_domain,
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
/* This needs to be before glib.h, since it might be used in inline
|
/* This needs to be before glib.h, since it might be used in inline
|
||||||
* functions */
|
* functions */
|
||||||
extern const char *g_log_domain_gstreamer;
|
extern const char g_log_domain_gstreamer[];
|
||||||
|
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue