[easytag/wip/application-window: 42/47] 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: 42/47] Fix format specifier in GIO C++ wrapper string
- Date: Fri, 15 Aug 2014 19:15:37 +0000 (UTC)
commit 71d3c791ea90a52e7bbb5cc091f5db561c4b98ec
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]