(svn r2390) - Codechange: Fix some warnings on GCC 4.0.0

This commit is contained in:
hackykid
2005-06-01 11:52:44 +00:00
parent 351d7aaa9f
commit f7dcd2e834
10 changed files with 18 additions and 12 deletions

View File

@@ -67,6 +67,7 @@ Order UnpackVersion4Order(uint16 packed)
order.flags = (packed & 0x00F0) >> 4;
order.station = (packed & 0xFF00) >> 8;
order.next = NULL;
order.index = 0; // avoid compiler warning
return order;
}