mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
diag: fix typo in hos-specific backtrace getter
This commit is contained in:
parent
79b1835a2b
commit
6aab36fc6a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue