mirror of
https://github.com/ioquake/ioq3.git
synced 2025-06-02 01:42:12 +00:00
First diff from Andreas Schneider:
here are gcc4 signedness fixes for latest svn :)
This commit is contained in:
parent
23d08fae65
commit
06c73f5e59
7 changed files with 16 additions and 11 deletions
|
@ -705,7 +705,12 @@ int PC_ExpandBuiltinDefine(source_t *source, token_t *deftoken, define_t *define
|
|||
token_t **firsttoken, token_t **lasttoken)
|
||||
{
|
||||
token_t *token;
|
||||
#ifdef _WIN32
|
||||
unsigned long t; // time_t t; //to prevent LCC warning
|
||||
#else
|
||||
time_t t;
|
||||
#endif
|
||||
|
||||
char *curtime;
|
||||
|
||||
token = PC_CopyToken(deftoken);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue