fix return

This commit is contained in:
Dennis Eichhorn 2022-12-01 20:28:16 +01:00
parent a6216bdb58
commit 4bc8aef668

View File

@ -87,7 +87,7 @@ namespace Utils {
struct stat buffer;
stat(filename, &buffer);
(time_t) buffer.st_mtim.tv_sec;
return (time_t) buffer.st_mtim.tv_sec;
#endif
}