summaryrefslogtreecommitdiffhomepage
path: root/Stars45/MsnSelectDlg.cpp
diff options
context:
space:
mode:
authorFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-09 21:12:14 +0000
committerFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-09 21:12:14 +0000
commit9a2f3d3377b82b597f00d1d8fb8ee58d141cfb95 (patch)
treeaa4691cd582e1b074d43ba30e930f29b7942885d /Stars45/MsnSelectDlg.cpp
parentb2805409566af00bc15639494f5a186fbd2f16e6 (diff)
downloadstarshatter-9a2f3d3377b82b597f00d1d8fb8ee58d141cfb95.zip
starshatter-9a2f3d3377b82b597f00d1d8fb8ee58d141cfb95.tar.gz
starshatter-9a2f3d3377b82b597f00d1d8fb8ee58d141cfb95.tar.bz2
More string safety stuff
Diffstat (limited to 'Stars45/MsnSelectDlg.cpp')
-rw-r--r--Stars45/MsnSelectDlg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Stars45/MsnSelectDlg.cpp b/Stars45/MsnSelectDlg.cpp
index 8972e7c..9530dcf 100644
--- a/Stars45/MsnSelectDlg.cpp
+++ b/Stars45/MsnSelectDlg.cpp
@@ -443,7 +443,7 @@ MsnSelectDlg::OnDel(AWEvent* event)
ConfirmDlg* confirm = manager->GetConfirmDlg();
if (confirm) {
char msg[256];
- sprintf(msg, Game::GetText("MsnSelectDlg.are-you-sure").data(), m->Name());
+ sprintf_s(msg, Game::GetText("MsnSelectDlg.are-you-sure").data(), m->Name());
confirm->SetMessage(msg);
confirm->SetTitle(Game::GetText("MsnSelectDlg.confirm-delete"));
confirm->SetParentControl(btn_del);