[easytag/wip/application-window: 81/82] Fix format specifier in GIO C++ wrapper string
- From: David King <davidk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [easytag/wip/application-window: 81/82] Fix format specifier in GIO C++ wrapper string
- Date: Sat, 9 Aug 2014 21:52:05 +0000 (UTC)
commit ea2ae451137b2b265e74c01fb06397002f6aca9a
Author: David King <amigadave amigadave com>
Date: Sat Aug 9 19:57:09 2014 +0100
Fix format specifier in GIO C++ wrapper string
src/tags/gio_wrapper.cc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/tags/gio_wrapper.cc b/src/tags/gio_wrapper.cc
index 7a9c086..5287c56 100644
--- a/src/tags/gio_wrapper.cc
+++ b/src/tags/gio_wrapper.cc
@@ -233,8 +233,8 @@ GIO_IOStream::writeBlock (TagLib::ByteVector const &data)
if (!g_output_stream_write_all (ostream, data.data (), data.size (),
&bytes_written, NULL, &error))
{
- g_debug ("Only %" G_GSIZE_FORMAT " bytes out of %" G_GSIZE_FORMAT
- " bytes of data were written", bytes_written, data.size ());
+ g_debug ("Only %" G_GSIZE_FORMAT " bytes out of %u bytes of data were "
+ "written", bytes_written, data.size ());
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]