X-Git-Url: https://code.delx.au/refind/blobdiff_plain/88322d0912852afc0a33f718625199f35f7b7196..a8a06ba01058e3ef5f546a4a4a352d06638359a8:/filesystems/fsw_hfs.c diff --git a/filesystems/fsw_hfs.c b/filesystems/fsw_hfs.c index 76df9a3..d5c8ed5 100644 --- a/filesystems/fsw_hfs.c +++ b/filesystems/fsw_hfs.c @@ -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; }