diff options
author | David Schleef <ds@schleef.org> | 2003-02-02 05:26:29 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-02-02 05:26:29 +0000 |
commit | 48300827a18b9145bc5d57afee0520c3b226d50f (patch) | |
tree | dedd68a49beeb2986d840d9b4233ea2cc92e95b5 /ext/artsd | |
parent | b80a4140f3c88fb68f4c319be9efc6977636360d (diff) | |
download | gst-plugins-bad-48300827a18b9145bc5d57afee0520c3b226d50f.tar.gz gst-plugins-bad-48300827a18b9145bc5d57afee0520c3b226d50f.tar.bz2 gst-plugins-bad-48300827a18b9145bc5d57afee0520c3b226d50f.zip |
Change %lld, %llu to G_G[U]INT64_FORMAT globally. Fix bad pointer->integer conversion.
Original commit message from CVS:
Change %lld, %llu to G_G[U]INT64_FORMAT globally. Fix bad pointer->integer
conversion.
Diffstat (limited to 'ext/artsd')
-rw-r--r-- | ext/artsd/gstartsdsink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/artsd/gstartsdsink.c b/ext/artsd/gstartsdsink.c index cbe6b904..a7d1f7f3 100644 --- a/ext/artsd/gstartsdsink.c +++ b/ext/artsd/gstartsdsink.c @@ -228,7 +228,7 @@ gst_artsdsink_chain (GstPad *pad, GstBuffer *buf) artsdsink = GST_ARTSDSINK (gst_pad_get_parent (pad)); if (GST_BUFFER_DATA (buf) != NULL) { - gst_trace_add_entry(NULL, 0, buf, "artsdsink: writing to server"); + gst_trace_add_entry(NULL, 0, GPOINTER_TO_INT(buf), "artsdsink: writing to server"); if (!artsdsink->mute && artsdsink->connected) { int bytes; void * bufptr = GST_BUFFER_DATA (buf); |