summaryrefslogtreecommitdiffstats
path: root/ext/ladspa/gstladspa.c
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-07-23 22:47:19 +0000
committerDavid Schleef <ds@schleef.org>2003-07-23 22:47:19 +0000
commit7bea2b377a4bb138b26ef7b07a466380ae7e13b0 (patch)
tree495ed8d8c7b2627685fb0333bec9bfcfaed6b193 /ext/ladspa/gstladspa.c
parent2655a3b98add4057127c5b39a72c0d2ce4a26714 (diff)
Fix warning on 64-bit architectures. (sizeof() returns size_t, which is not int)
Original commit message from CVS: Fix warning on 64-bit architectures. (sizeof() returns size_t, which is not int)
Diffstat (limited to 'ext/ladspa/gstladspa.c')
-rw-r--r--ext/ladspa/gstladspa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c
index a58358ba..460bdf12 100644
--- a/ext/ladspa/gstladspa.c
+++ b/ext/ladspa/gstladspa.c
@@ -848,8 +848,8 @@ gst_ladspa_chain (GstPad *pad, GstBuffer *buffer_in)
if (numsrcpads) {
for (i=0; i<numsrcpads; i++) {
- DEBUG_OBJ (ladspa, "pushing buffer (%p, length %d) on src pad %d",
- buffers_out[i], GST_BUFFER_SIZE (buffers_out[i])/sizeof(float), i);
+ DEBUG_OBJ (ladspa, "pushing buffer (%p, length %u bytes) on src pad %d",
+ buffers_out[i], GST_BUFFER_SIZE (buffers_out[i]), i);
gst_pad_push (ladspa->srcpads[i], buffers_out[i]);
}