[Xfce4-commits] <parole:master> Fix debug build on older platforms

Sean Davis noreply at xfce.org
Wed Dec 4 02:34:01 CET 2013


Updating branch refs/heads/master
         to 75c1bea7977cc73335745ef9ff33fb869ba4f14f (commit)
       from 6c8f5999dedb380d28908545678b9d3e85108e01 (commit)

commit 75c1bea7977cc73335745ef9ff33fb869ba4f14f
Author: Sean Davis <smd.seandavis at gmail.com>
Date:   Tue Dec 3 20:33:06 2013 -0500

    Fix debug build on older platforms

 src/misc/parole-pl-parser.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/misc/parole-pl-parser.c b/src/misc/parole-pl-parser.c
index 456fec1..4054ff2 100644
--- a/src/misc/parole-pl-parser.c
+++ b/src/misc/parole-pl-parser.c
@@ -64,13 +64,13 @@ gchar *g_substr (const gchar* string, gint start, gint end);
 static gchar*
 parole_filename_to_utf8(const gchar* filename)
 {
-    gsize read, written;
+    gsize read_size, written;
     
     gchar *utf8;
     gchar *tmp = g_strdup(filename);
     tmp = g_strconcat(tmp, "\0", NULL);
     
-    utf8 = g_filename_to_utf8(tmp, -1, &read, &written, NULL);
+    utf8 = g_filename_to_utf8(tmp, -1, &read_size, &written, NULL);
     g_free(tmp);
     return utf8;
 }


More information about the Xfce4-commits mailing list