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