1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

Allow for warning-free build of ar65 with MS VC on warning level 3.

This commit is contained in:
Oliver Schmidt 2013-04-07 23:34:16 +02:00
parent be83b87463
commit 662af3d67c

View File

@ -278,7 +278,7 @@ void ObjAdd (const char* Name)
/* Initialize the object module data structure */ /* Initialize the object module data structure */
O->Name = xstrdup (Module); O->Name = xstrdup (Module);
O->Flags = OBJ_HAVEDATA; O->Flags = OBJ_HAVEDATA;
O->MTime = StatBuf.st_mtime; O->MTime = (unsigned long) StatBuf.st_mtime;
O->Start = 0; O->Start = 0;
/* Determine the file size. Note: Race condition here */ /* Determine the file size. Note: Race condition here */