Fixed format string issue in a test, fixes bug 640725

This commit is contained in:
Tobias Mueller 2011-01-27 15:14:31 +01:00 committed by Matthias Clasen
parent 069daa69f6
commit 8602a3a682

View File

@ -267,7 +267,7 @@ main (int argc, char *argv[])
{ {
string = g_string_sized_new (0); string = g_string_sized_new (0);
test_file (argv[1]); test_file (argv[1]);
g_print (string->str); g_print ("%s", string->str);
return 0; return 0;
} }