summaryrefslogtreecommitdiff
path: root/src/subsidy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/subsidy.cpp')
-rw-r--r--src/subsidy.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/subsidy.cpp b/src/subsidy.cpp
index 974aa50a8..62b463ced 100644
--- a/src/subsidy.cpp
+++ b/src/subsidy.cpp
@@ -24,6 +24,7 @@
#include "core/random_func.hpp"
#include "game/game.hpp"
#include "command_func.h"
+#include "string_func.h"
#include "table/strings.h"
@@ -47,7 +48,7 @@ void Subsidy::AwardTo(CompanyID company)
SetDParam(0, company);
GetString(company_name, STR_COMPANY_NAME, lastof(company_name));
- char *cn = strdup(company_name);
+ char *cn = stredup(company_name);
/* Add a news item */
Pair reftype = SetupSubsidyDecodeParam(this, false);