summaryrefslogtreecommitdiff
path: root/src/nautilus-autorun-software.c
diff options
context:
space:
mode:
authorA. Walton <awalton@gnome.org>2008-05-05 19:21:59 +0000
committerAndrew Walton <awalton@src.gnome.org>2008-05-05 19:21:59 +0000
commitb1fa791169054357bfd754446f95e9c3b7e754b2 (patch)
treec2da34de46d08dc4847301d368895507d4bc6c54 /src/nautilus-autorun-software.c
parent817bc16f06eb6db0c267e155b7f9d2187e97eeef (diff)
downloadnautilus-b1fa791169054357bfd754446f95e9c3b7e754b2.tar.gz
reviewed by: Cosimo Cecchi
2008-05-05 A. Walton <awalton@gnome.org> reviewed by: Cosimo Cecchi * libnautilus-private/nautilus-module.c (nautilus_module_load): * src/file-manager/fm-ditem-page.c (save_entry): * src/nautilus-autorun-software.c (autorun): Fixes build on toolchains with -Wformat enabled. Closes bug #531562. svn path=/trunk/; revision=14140
Diffstat (limited to 'src/nautilus-autorun-software.c')
-rw-r--r--src/nautilus-autorun-software.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-autorun-software.c b/src/nautilus-autorun-software.c
index 63616e3a9..0c08d82a9 100644
--- a/src/nautilus-autorun-software.c
+++ b/src/nautilus-autorun-software.c
@@ -166,7 +166,7 @@ out:
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
_("<big><b>Error autorunning software</b></big>"));
- gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), error_string);
+ gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "%s", error_string);
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
g_free (error_string);