mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
SW: Fix -Wnarrowing errors in grpscan
git-svn-id: https://svn.eduke32.com/eduke32@7524 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
3d3348c2b8
commit
bc96cd998d
2 changed files with 4 additions and 4 deletions
|
@ -32,9 +32,9 @@
|
|||
|
||||
grpfile grpfiles[numgrpfiles] =
|
||||
{
|
||||
{ "Registered Version", 0x7545319F, 47536148, NULL },
|
||||
{ "Shareware Version", 0x08A7FA1F, 26056769, NULL },
|
||||
{ "Wanton Destruction (Addon)", 0xA9AAA7B7, 48698128, NULL },
|
||||
{ "Registered Version", 0x7545319Fu, 47536148, NULL },
|
||||
{ "Shareware Version", 0x08A7FA1Fu, 26056769, NULL },
|
||||
{ "Wanton Destruction (Addon)", 0xA9AAA7B7u, 48698128, NULL },
|
||||
};
|
||||
grpfile *foundgrps = NULL;
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
struct grpfile
|
||||
{
|
||||
const char *name;
|
||||
int crcval;
|
||||
unsigned int crcval;
|
||||
int size;
|
||||
struct grpfile *next;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue