diag: fix typo in hos-specific backtrace getter

This commit is contained in:
Michael Scire 2022-03-10 01:49:48 -08:00 committed by SciresM
parent 79b1835a2b
commit 6aab36fc6a

View file

@ -32,7 +32,7 @@ namespace ams::diag {
} }
#if defined(ATMOSPHERE_OS_HORIZON) #if defined(ATMOSPHERE_OS_HORIZON)
size_t GetBacktace(uintptr_t *out, size_t out_size, uintptr_t fp, uintptr_t sp, uintptr_t pc) { size_t GetBacktrace(uintptr_t *out, size_t out_size, uintptr_t fp, uintptr_t sp, uintptr_t pc) {
/* Validate pre-conditions. */ /* Validate pre-conditions. */
AMS_ASSERT(out != nullptr); AMS_ASSERT(out != nullptr);
AMS_ASSERT(out_size > 0); AMS_ASSERT(out_size > 0);