Browse Source

Merge pull request #17 from mseker-issd/patch-7

Fix wrong initialization of tm.tm_mon and tm_year
pull/18/head
Philipp Tölke 8 years ago
committed by GitHub
parent
commit
38605d1874
  1. 4
      vfs.c

4
vfs.c

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

Loading…
Cancel
Save