summaryrefslogtreecommitdiff
path: root/ext/sndfile
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-03-10 20:10:09 +0000
committerTim-Philipp Müller <tim@centricular.net>2007-03-10 20:10:09 +0000
commit4300e22d54d459ee17025207acc2ad627dff064e (patch)
treeee233b2cc055e4ce25bd385a6158540238799542 /ext/sndfile
parentab6e3e5e06966592fc6289db9ff3018a2b1fe513 (diff)
ext/: Printf format string fixes.
Original commit message from CVS: * ext/nas/nassink.c: (NAS_createFlow): * ext/sndfile/gstsfsrc.c: (gst_sf_src_create): Printf format string fixes.
Diffstat (limited to 'ext/sndfile')
-rw-r--r--ext/sndfile/gstsfsrc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sndfile/gstsfsrc.c b/ext/sndfile/gstsfsrc.c
index 449c32fb7..0cd1e9137 100644
--- a/ext/sndfile/gstsfsrc.c
+++ b/ext/sndfile/gstsfsrc.c
@@ -267,9 +267,9 @@ bad_offset:
}
bad_length:
{
- GST_ELEMENT_ERROR (this, RESOURCE, SEEK,
- (NULL), ("length %" G_GUINT64_FORMAT " not divisible by %d bytes per "
- "frame", length, this->bytes_per_frame));
+ GST_ELEMENT_ERROR (this, RESOURCE, SEEK, (NULL),
+ ("length %u not divisible by %d bytes per frame", length,
+ this->bytes_per_frame));
return GST_FLOW_ERROR;
}
seek_failed: