From 60777c5b0d196a9c8aa9f455d7ed53cca77dd894 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 24 Feb 2021 10:16:44 -0800 Subject: [PATCH] fs: fix GetFileTimeStampRawForDebug --- libstratosphere/source/fs/fsa/fs_user_filesystem_for_debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstratosphere/source/fs/fsa/fs_user_filesystem_for_debug.cpp b/libstratosphere/source/fs/fsa/fs_user_filesystem_for_debug.cpp index d10e5be6..af95ddcc 100644 --- a/libstratosphere/source/fs/fsa/fs_user_filesystem_for_debug.cpp +++ b/libstratosphere/source/fs/fsa/fs_user_filesystem_for_debug.cpp @@ -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(); }