aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterbuycurrency.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llfloaterbuycurrency.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llfloaterbuycurrency.cpp b/linden/indra/newview/llfloaterbuycurrency.cpp
index 0381b8f..e957ba9 100644
--- a/linden/indra/newview/llfloaterbuycurrency.cpp
+++ b/linden/indra/newview/llfloaterbuycurrency.cpp
@@ -375,7 +375,7 @@ void LLFloaterBuyCurrency::buyCurrency(const std::string& name, S32 price)
375 { 375 {
376 LLStringBase<char>::format_map_t args; 376 LLStringBase<char>::format_map_t args;
377 args["[NAME]"] = name.c_str(); 377 args["[NAME]"] = name.c_str();
378 args["[PRICE]"] = price; 378 args["[PRICE]"] = llformat("%d", price);
379 gViewerWindow->alertXml("NotEnoughCurrency", args); 379 gViewerWindow->alertXml("NotEnoughCurrency", args);
380 return; 380 return;
381 } 381 }