Fix debug build

A non-existent parameter was left in some formatting calls (the logging
macro for which only does anything meaningful on debug builds)
This commit is contained in:
Lioncash 2018-12-01 02:05:19 -05:00
parent b7104263ba
commit e88cdcc912
2 changed files with 3 additions and 5 deletions

View file

@ -1044,7 +1044,7 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V
LOG_TRACE(Kernel_SVC,
"called entrypoint=0x{:08X} ({}), arg=0x{:08X}, stacktop=0x{:08X}, "
"threadpriority=0x{:08X}, processorid=0x{:08X} : created handle=0x{:08X}",
entry_point, name, arg, stack_top, priority, processor_id, *out_handle);
entry_point, arg, stack_top, priority, processor_id, *out_handle);
if (priority > THREADPRIO_LOWEST) {
LOG_ERROR(Kernel_SVC, "An invalid priority was specified, expected {} but got {}",