diff --git a/ChangeLog b/ChangeLog index 80f334cb60..4d3e97a068 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-12-11 Stefan Kost + + * gst/gstutils.c: + * gst/gstutils.h: + Actually its not PURE as it gets the time from elsewhere. + 2007-12-11 Stefan Kost * docs/gst/gstreamer-sections.txt: diff --git a/gst/gstutils.c b/gst/gstutils.c index 6425ff86e2..ddbe977d1c 100644 --- a/gst/gstutils.c +++ b/gst/gstutils.c @@ -3339,7 +3339,7 @@ gst_type_register_static_full (GType parent_type, * * Since: 0.10.16 */ -G_GNUC_PURE GstClockTime +GstClockTime gst_util_get_timestamp (void) { #ifdef HAVE_POSIX_TIMERS diff --git a/gst/gstutils.h b/gst/gstutils.h index dd438af890..cf1aded022 100644 --- a/gst/gstutils.h +++ b/gst/gstutils.h @@ -689,7 +689,7 @@ GstElement * gst_parse_bin_from_description (const gchar * bin_descr gboolean ghost_unconnected_pads, GError ** err); -GstClockTime gst_util_get_timestamp (void) G_GNUC_PURE; +GstClockTime gst_util_get_timestamp (void); G_END_DECLS