1
0
Fork 0

Fix a couple of 64-bit warnings identified by GCC.

PositionedID is of "int64_t", which depends on platform: apparently it is
"long long int" for Mac (requiring %lld format), but it is "long int" for
64bit Linux (requiring %ld). To avoid a "compiler warning fix commit
war" ;-) use a type cast to the longest common type (long long int).
This commit is contained in:
ThorstenB 2012-11-26 00:23:10 +01:00
parent 63c95642c8
commit 7ed8b625c9
2 changed files with 3 additions and 3 deletions

View file

@ -311,7 +311,7 @@ bool FGAIFlightPlan::createTakeoffTaxi(FGAIAircraft * ac, bool firstFlight,
//cerr << "Building taxi route" << endl;
while (taxiRoute.next(&node)) {
char buffer[10];
snprintf(buffer, 10, "%lld", node);
snprintf(buffer, 10, "%lld", (long long int) node);
FGTaxiNode *tn =
apt->getDynamics()->getGroundNetwork()->findNode(node);
FGAIWaypoint *wpt =
@ -416,7 +416,7 @@ bool FGAIFlightPlan::createLandingTaxi(FGAIAircraft * ac, FGAirport * apt,
for (int i = 0; i < size - 2; i++) {
taxiRoute.next(&node);
char buffer[10];
snprintf(buffer, 10, "%lld", node);
snprintf(buffer, 10, "%lld", (long long int) node);
FGTaxiNode *tn = gn->findNode(node);
FGAIWaypoint *wpt =
createOnGround(ac, buffer, tn->geod(), apt->getElevation(),

View file

@ -98,7 +98,7 @@ bool FGAIFlightPlan::createPushBack(FGAIAircraft *ac,
while (route.next(&node))
{
char buffer[10];
snprintf (buffer, 10, "%lld", node);
snprintf (buffer, 10, "%lld", (long long int) node);
FGTaxiNode *tn = groundNet->findNode(node);
FGAIWaypoint *wpt = createOnGround(ac, string(buffer), tn->geod(), dep->getElevation(), vTaxiBackward);