fs: fix GetFileTimeStampRawForDebug

This commit is contained in:
Michael Scire 2021-02-24 10:16:44 -08:00
parent b9d2e3ac24
commit 96b07461c2

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();
}