mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-28 16:36:14 +01:00
Fixed format string issue in a test, fixes bug 640725
This commit is contained in:
parent
069daa69f6
commit
8602a3a682
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user