Fix a compilation error (with certain warning flags).

This commit is contained in:
Tambet Ingo
2009-04-01 16:20:19 +03:00
parent 83ba035aad
commit cf6aeffd63

View File

@@ -305,7 +305,7 @@ serial_debug (const char *prefix, const char *buf, int len)
} }
g_string_append_c (debug, '\''); g_string_append_c (debug, '\'');
g_debug (debug->str); g_debug ("%s", debug->str);
g_string_truncate (debug, 0); g_string_truncate (debug, 0);
} }