]> code.delx.au - refind/blobdiff - filesystems/fsw_hfs.c
Previous commit broke loading of EFI drivers with SB active; fix it.
[refind] / filesystems / fsw_hfs.c
index 76df9a3fee1de9498a2a5c67e4adf100e383e75e..d5c8ed5633515d43f4587e775b004b7e1ce828e0 100644 (file)
@@ -530,10 +530,10 @@ static fsw_status_t fsw_hfs_dnode_stat(struct fsw_hfs_volume *vol,
                                        struct fsw_dnode_stat *sb)
 {
   sb->used_bytes = dno->used_bytes;
-  sb->store_time_posix(sb, FSW_DNODE_STAT_CTIME, mac_to_posix(dno->ctime));
-  sb->store_time_posix(sb, FSW_DNODE_STAT_MTIME, mac_to_posix(dno->mtime));
-  sb->store_time_posix(sb, FSW_DNODE_STAT_ATIME, 0);
-  sb->store_attr_posix(sb, 0700);
+  fsw_store_time_posix(sb, FSW_DNODE_STAT_CTIME, mac_to_posix(dno->ctime));
+  fsw_store_time_posix(sb, FSW_DNODE_STAT_MTIME, mac_to_posix(dno->mtime));
+  fsw_store_time_posix(sb, FSW_DNODE_STAT_ATIME, 0);
+  fsw_store_attr_posix(sb, 0700);
 
   return FSW_SUCCESS;
 }