Browse Source

Also fix wrong initialization of tm.tm_year

"tm_year   The number of years since 1900."
pull/17/head
Philipp Tölke 8 years ago
committed by GitHub
parent
commit
5aa3a91c69
  1. 2
      vfs.c

2
vfs.c

@ -130,7 +130,7 @@ void vfs_closedir(vfs_dir_t* dir) {
}
struct tm dummy = {
.tm_year = 1970,
.tm_year = 70,
.tm_mon = 0,
.tm_mday = 1,
.tm_hour = 0,

Loading…
Cancel
Save