summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_cargo.cpp
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2009-01-17 15:31:30 +0000
committertruebrain <truebrain@openttd.org>2009-01-17 15:31:30 +0000
commit3abb8abd07e56b4b051d57cd6e6f1c56ab8bdb64 (patch)
tree14e7ce689d02dc05c06feede936f8d1c1bdb8c02 /src/ai/api/ai_cargo.cpp
parent7e8d9a3e667385113636cfc09d7cab4887591cf7 (diff)
downloadopenttd-3abb8abd07e56b4b051d57cd6e6f1c56ab8bdb64.tar.xz
(svn r15123) -Fix [NoAI]: 'const char *' implies that the return value should not be free'd, which is should .. so make them 'char *'
Diffstat (limited to 'src/ai/api/ai_cargo.cpp')
-rw-r--r--src/ai/api/ai_cargo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/api/ai_cargo.cpp b/src/ai/api/ai_cargo.cpp
index 6843f7134..dccf2af6e 100644
--- a/src/ai/api/ai_cargo.cpp
+++ b/src/ai/api/ai_cargo.cpp
@@ -15,7 +15,7 @@
return (cargo_type < NUM_CARGO && ::GetCargo(cargo_type)->IsValid());
}
-/* static */ const char *AICargo::GetCargoLabel(CargoID cargo_type)
+/* static */ char *AICargo::GetCargoLabel(CargoID cargo_type)
{
if (!IsValidCargo(cargo_type)) return NULL;
const CargoSpec *cargo = ::GetCargo(cargo_type);