[easytag/easytag-2-2] Fix conversion specifier in debug string
- From: David King <davidk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [easytag/easytag-2-2] Fix conversion specifier in debug string
- Date: Tue, 22 Apr 2014 14:43:42 +0000 (UTC)
commit 09ed88358afcee1fc7b1d57e471ac434b66837bb
Author: David King <amigadave amigadave com>
Date: Tue Apr 22 15:37:13 2014 +0100
Fix conversion specifier in debug string
src/gio_wrapper.cc | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/gio_wrapper.cc b/src/gio_wrapper.cc
index 763cfa4..709eabc 100644
--- a/src/gio_wrapper.cc
+++ b/src/gio_wrapper.cc
@@ -288,7 +288,8 @@ GIO_IOStream::insert (TagLib::ByteVector const &data,
}
start -= r;
- g_warning ("Wrote %lu bytes of %lu: %.*s", r, start, (int)r, buffer);
+ g_warning ("Wrote %lu bytes of %" G_GSIZE_FORMAT ": %.*s", r, start, r,
+ buffer);
}
if (error)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]