mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-03-20 17:51:02 +00:00
Fix Sys_FileTimeStamp return type
Sync with its header.
This commit is contained in:
parent
5ee2e5b564
commit
56bd47ac43
1 changed files with 1 additions and 1 deletions
|
@ -432,7 +432,7 @@ const char *Sys_DefaultCDPath( void ) {
|
|||
return "";
|
||||
}
|
||||
|
||||
long Sys_FileTimeStamp(FILE * fp) {
|
||||
ID_TIME_T Sys_FileTimeStamp(FILE * fp) {
|
||||
struct stat st;
|
||||
fstat(fileno(fp), &st);
|
||||
return st.st_mtime;
|
||||
|
|
Loading…
Reference in a new issue