summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_vehicle.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
commiteb0d82ada08a5a1f1c229acba8dcee0278603b89 (patch)
tree14e7ce689d02dc05c06feede936f8d1c1bdb8c02 /src/ai/api/ai_vehicle.cpp
parentef75a7af90d9ed2fbcb13d7511d93ff44f4c0cf8 (diff)
downloadopenttd-eb0d82ada08a5a1f1c229acba8dcee0278603b89.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_vehicle.cpp')
-rw-r--r--src/ai/api/ai_vehicle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/api/ai_vehicle.cpp b/src/ai/api/ai_vehicle.cpp
index 7427025af..ec5d42f65 100644
--- a/src/ai/api/ai_vehicle.cpp
+++ b/src/ai/api/ai_vehicle.cpp
@@ -227,7 +227,7 @@
return ::GetVehicle(vehicle_id)->unitnumber;
}
-/* static */ const char *AIVehicle::GetName(VehicleID vehicle_id)
+/* static */ char *AIVehicle::GetName(VehicleID vehicle_id)
{
if (!IsValidVehicle(vehicle_id)) return NULL;