gst/gstinfo.*: Change name parameter of _gst_debug_register_funcptr to const to refle...
authorDavid Schleef <ds@schleef.org>
Wed, 25 Oct 2006 23:47:40 +0000 (23:47 +0000)
committerDavid Schleef <ds@schleef.org>
Wed, 25 Oct 2006 23:47:40 +0000 (23:47 +0000)
Original commit message from CVS:
* gst/gstinfo.c:
* gst/gstinfo.h:
Change name parameter of _gst_debug_register_funcptr to const
to reflect the constness of its use in the function as well
as to quiet a gcc warning.

ChangeLog
gst/gstinfo.c
gst/gstinfo.h

index dde6ff1..75e2b32 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-10-25  David Schleef  <ds@schleef.org>
+
+       * gst/gstinfo.c:
+       * gst/gstinfo.h:
+         Change name parameter of _gst_debug_register_funcptr to const
+         to reflect the constness of its use in the function as well
+         as to quiet a gcc warning.
+
 2006-10-25  Edward Hervey  <edward@fluendo.com>
 
        * libs/gst/base/gstbasetransform.c: (gst_base_transform_chain):
index bc0dffe..b08413d 100644 (file)
@@ -1249,7 +1249,7 @@ _gst_debug_nameof_funcptr (GstDebugFuncPtr ptr)
 }
 
 void
-_gst_debug_register_funcptr (GstDebugFuncPtr func, gchar * ptrname)
+_gst_debug_register_funcptr (GstDebugFuncPtr func, const gchar * ptrname)
 {
   gpointer ptr = (gpointer) func;
 
index 9bc5f40..2413d54 100644 (file)
@@ -887,7 +887,7 @@ GST_LOG (const char *format, ...)
 
 typedef        void (* GstDebugFuncPtr)        (void);
 void   _gst_debug_register_funcptr     (GstDebugFuncPtr        func,
-                                        gchar *                ptrname);
+                                        const gchar *          ptrname);
 G_CONST_RETURN gchar *
        _gst_debug_nameof_funcptr       (GstDebugFuncPtr        func);