[easytag/wip/application-window: 4/22] Fix format specifier in GIO C++ wrapper string



commit f73d8c98f7dd0724f7e9b3ea2aa824565c4e0731
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]