diff options
author | Shauren <shauren.trinity@gmail.com> | 2013-10-16 18:59:34 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2013-10-16 18:59:34 +0200 |
commit | 81ec99c95e326ec1b98fff724f387dd077999368 (patch) | |
tree | f2f7693c2ff47525cfe10e84372d5687db1a740c /src | |
parent | ce55647c415b710c6b440d96c2f26ebbc06c1d6e (diff) |
Build fix
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Entities/Transport/Transport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Entities/Transport/Transport.cpp b/src/server/game/Entities/Transport/Transport.cpp index e6ca93307e7..9208cfda081 100644 --- a/src/server/game/Entities/Transport/Transport.cpp +++ b/src/server/game/Entities/Transport/Transport.cpp @@ -66,7 +66,7 @@ bool Transport::Create(uint32 guidlow, uint32 entry, uint32 mapid, float x, floa TransportTemplate const* tInfo = sTransportMgr->GetTransportTemplate(entry); if (!tInfo) { - TC_LOG_ERROR(LOG_FILTER_SQL, "Transport %u (name: %s) will not be created, missing `transport_template` entry.", entry, goinfo->name); + TC_LOG_ERROR(LOG_FILTER_SQL, "Transport %u (name: %s) will not be created, missing `transport_template` entry.", entry, goinfo->name.c_str()); return false; } |