Change type of pkgCache::Package.ID to 'unsigned int'.

'unsigned short' breaks when there are more than 65535 packages.
This commit is contained in:
Alex V. Myltsev 2008-08-26 23:46:15 +04:00 committed by Alex V. Myltsev
parent 92b2ba1c36
commit 418a824fd6

View File

@ -227,7 +227,7 @@ struct pkgCache::Package
unsigned char InstState; // Flags
unsigned char CurrentState; // State
unsigned short ID;
unsigned int ID;
unsigned long Flags;
};