//cerr << "Building taxi route" << endl;
while (taxiRoute.next(&node)) {
char buffer[10];
- snprintf(buffer, 10, "%lld", node);
+ snprintf(buffer, 10, "%ld", node);
FGTaxiNode *tn =
apt->getDynamics()->getGroundNetwork()->findNode(node);
FGAIWaypoint *wpt =
for (int i = 0; i < size - 2; i++) {
taxiRoute.next(&node);
char buffer[10];
- snprintf(buffer, 10, "%lld", node);
+ snprintf(buffer, 10, "%ld", node);
FGTaxiNode *tn = gn->findNode(node);
FGAIWaypoint *wpt =
createOnGround(ac, buffer, tn->geod(), apt->getElevation(),
while (route.next(&node))
{
char buffer[10];
- snprintf (buffer, 10, "%lld", node);
+ snprintf (buffer, 10, "%ld", node);
FGTaxiNode *tn = groundNet->findNode(node);
FGAIWaypoint *wpt = createOnGround(ac, string(buffer), tn->geod(), dep->getElevation(), vTaxiBackward);