summaryrefslogtreecommitdiff
path: root/gst/gstinfo.c
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2011-06-09 17:13:35 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-06-09 17:54:27 +0100
commit5d25e4a2045bb279a9c3a01207cf0c5964256655 (patch)
tree71bedbc5f4e80029506e54e110d13bd7c85fe1f4 /gst/gstinfo.c
parentde514c63d1c07110ddf57f28c9a43115530c85e5 (diff)
downloadgstreamer-5d25e4a2045bb279a9c3a01207cf0c5964256655.tar.gz
Use "const" instead G_CONST_RETURN
G_CONST_RETURN will be deprecated soon. https://bugzilla.gnome.org/show_bug.cgi?id=652211
Diffstat (limited to 'gst/gstinfo.c')
-rw-r--r--gst/gstinfo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/gstinfo.c b/gst/gstinfo.c
index 36fe1ac988..50622395aa 100644
--- a/gst/gstinfo.c
+++ b/gst/gstinfo.c
@@ -1789,7 +1789,7 @@ gst_debug_log_default (GstDebugCategory * category, GstDebugLevel level,
{
}
-G_CONST_RETURN gchar *
+const gchar *
gst_debug_level_get_name (GstDebugLevel level)
{
return "NONE";
@@ -1877,7 +1877,7 @@ gst_debug_category_get_threshold (GstDebugCategory * category)
return GST_LEVEL_NONE;
}
-G_CONST_RETURN gchar *
+const gchar *
gst_debug_category_get_name (GstDebugCategory * category)
{
return "";
@@ -1889,7 +1889,7 @@ gst_debug_category_get_color (GstDebugCategory * category)
return 0;
}
-G_CONST_RETURN gchar *
+const gchar *
gst_debug_category_get_description (GstDebugCategory * category)
{
return "";