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:
hendricks266 2019-04-08 06:27:35 +00:00 committed by Christoph Oelckers
parent 3d3348c2b8
commit bc96cd998d
2 changed files with 4 additions and 4 deletions

View file

@ -32,9 +32,9 @@
grpfile grpfiles[numgrpfiles] = grpfile grpfiles[numgrpfiles] =
{ {
{ "Registered Version", 0x7545319F, 47536148, NULL }, { "Registered Version", 0x7545319Fu, 47536148, NULL },
{ "Shareware Version", 0x08A7FA1F, 26056769, NULL }, { "Shareware Version", 0x08A7FA1Fu, 26056769, NULL },
{ "Wanton Destruction (Addon)", 0xA9AAA7B7, 48698128, NULL }, { "Wanton Destruction (Addon)", 0xA9AAA7B7u, 48698128, NULL },
}; };
grpfile *foundgrps = NULL; grpfile *foundgrps = NULL;

View file

@ -29,7 +29,7 @@
struct grpfile struct grpfile
{ {
const char *name; const char *name;
int crcval; unsigned int crcval;
int size; int size;
struct grpfile *next; struct grpfile *next;
}; };