fs: fix GetFileTimeStampRawForDebug

This commit is contained in:
Michael Scire 2021-02-24 10:16:44 -08:00 committed by SciresM
parent 97875c7d2f
commit c7e4f963e8

View file

@ -37,7 +37,7 @@ namespace ams::fs {
}
Result GetFileTimeStampRawForDebug(FileTimeStampRaw *out, const char *path) {
AMS_FS_R_TRY(GetFileTimeStampRawForDebug(out, path));
AMS_FS_R_TRY(impl::GetFileTimeStampRawForDebug(out, path));
return ResultSuccess();
}