Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Cool Fire
hexchat
Commits
8fb4bfb2
Commit
8fb4bfb2
authored
Mar 31, 2013
by
Andreas Rönnquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix error: format not a string literal and no format arguments [-Werror=format-security]
parent
f317076c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/fe-gtk/fe-gtk.c
src/fe-gtk/fe-gtk.c
+1
-1
No files found.
src/fe-gtk/fe-gtk.c
View file @
8fb4bfb2
...
...
@@ -149,7 +149,7 @@ create_msg_dialog (gchar *title, gchar *message)
{
GtkWidget
*
dialog
;
dialog
=
gtk_message_dialog_new
(
NULL
,
GTK_DIALOG_MODAL
,
GTK_MESSAGE_INFO
,
GTK_BUTTONS_CLOSE
,
message
);
dialog
=
gtk_message_dialog_new
(
NULL
,
GTK_DIALOG_MODAL
,
GTK_MESSAGE_INFO
,
GTK_BUTTONS_CLOSE
,
"%s"
,
message
);
gtk_window_set_title
(
GTK_WINDOW
(
dialog
),
title
);
/* On Win32 we automatically have the icon. If we try to load it explicitly, it will look ugly for some reason. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment