[easytag/wip/application-window: 1/105] 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: 1/105] Fix format specifier in GIO C++ wrapper string
- Date: Wed, 20 Aug 2014 06:57:02 +0000 (UTC)
commit a9bd9d5bcb16c775bcb998b4ea1258a2cd6c2009
Author: David King <amigadave amigadave com>
Date: Sat Aug 9 19:57:09 2014 +0100
Fix format specifier in GIO C++ wrapper string
src/gio_wrapper.cc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/gio_wrapper.cc b/src/gio_wrapper.cc
index 7a9c086..5287c56 100644
--- a/src/gio_wrapper.cc
+++ b/src/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]