Files
main/programming/misc/libunique/files/unique-1.0.6-fix-str-fmt.patch
T
2016-09-06 03:25:00 +03:00

14 lines
652 B
Diff

--- tests/test-unique.c.str 2009-02-02 16:10:03.000000000 +0100
+++ tests/test-unique.c 2009-02-02 16:10:22.000000000 +0100
@@ -97,10 +97,11 @@
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_INFO,
GTK_BUTTONS_CLOSE,
+ "%s",
title);
if (message)
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
- message);
+ "%s", message);
gtk_window_set_urgency_hint (GTK_WINDOW (dialog), TRUE);