summaryrefslogtreecommitdiffhomepage
path: root/Stars45/ShipAI.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/ShipAI.cpp
parentb2805409566af00bc15639494f5a186fbd2f16e6 (diff)
downloadstarshatter-9a2f3d3377b82b597f00d1d8fb8ee58d141cfb95.zip
starshatter-9a2f3d3377b82b597f00d1d8fb8ee58d141cfb95.tar.gz
starshatter-9a2f3d3377b82b597f00d1d8fb8ee58d141cfb95.tar.bz2
More string safety stuff
Diffstat (limited to 'Stars45/ShipAI.cpp')
-rw-r--r--Stars45/ShipAI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Stars45/ShipAI.cpp b/Stars45/ShipAI.cpp
index b06d20a..f64f8bc 100644
--- a/Stars45/ShipAI.cpp
+++ b/Stars45/ShipAI.cpp
@@ -203,7 +203,7 @@ const char*
ShipAI::GetObserverName() const
{
static char name[64];
- sprintf(name, "ShipAI(%s)", self->Name());
+ sprintf_s(name, "ShipAI(%s)", self->Name());
return name;
}