From f358e320ceb3ebf96005699b5d1a75e6027571d8 Mon Sep 17 00:00:00 2001
From: Bryan O'Sullivan <bos@lindenlab.com>
Date: Fri, 31 Oct 2008 18:47:46 +0000
Subject: Fix nasty printf argument error

---
 indra/llwindow/llwindowsdl.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/indra/llwindow/llwindowsdl.cpp b/indra/llwindow/llwindowsdl.cpp
index 96a8fae592..6a0ef141f5 100644
--- a/indra/llwindow/llwindowsdl.cpp
+++ b/indra/llwindow/llwindowsdl.cpp
@@ -2538,7 +2538,8 @@ S32 OSMessageBoxSDL(const std::string& text, const std::string& caption, U32 typ
 			buttons = GTK_BUTTONS_YES_NO;
 			break;
 		}
-		win = gtk_message_dialog_new(NULL,flags, messagetype, buttons, text.c_str());
+		win = gtk_message_dialog_new(NULL, flags, messagetype, buttons, "%s",
+									 text.c_str());
 
 # if LL_X11
 		// Make GTK tell the window manager to associate this
-- 
cgit v1.2.3