(svn r6627) -Fix r6624: fixed some warnings

Now it happened again. Somebody got warnings, that I didn't get... I will look into this issue
This commit is contained in:
bjarni 2006-10-03 16:05:11 +00:00
parent f86375b678
commit 950ef8f237
3 changed files with 9 additions and 0 deletions

View File

@ -191,6 +191,8 @@ static inline Order UnpackOrder(uint32 packed)
order.dest = GB(packed, 16, 16);
order.next = NULL;
order.index = 0; // avoid compiler warning
order.refit_cargo = CT_INVALID;
order.refit_subtype = 0;
return order;
}

View File

@ -57,6 +57,9 @@ Order UnpackOldOrder(uint16 packed)
order.flags = 0;
}
order.refit_cargo = CT_INVALID;
order.refit_subtype = 0;
return order;
}
@ -73,6 +76,8 @@ static Order UnpackVersion4Order(uint16 packed)
order.dest = GB(packed, 8, 8);
order.next = NULL;
order.index = 0; // avoid compiler warning
order.refit_cargo = CT_INVALID;
order.refit_subtype = 0;
return order;
}

View File

@ -215,6 +215,8 @@ static Order GetOrderCmdFromTile(const Vehicle *v, TileIndex tile)
Order order;
order.next = NULL;
order.index = 0;
order.refit_cargo = CT_INVALID;
order.refit_subtype = 0;
// check depot first
if (_patches.gotodepot) {