fs_user: Resolve sign conversion warning in GetPriority() (#5396)
Prevents a -Wsign-compare warning from occurring.
This commit is contained in:
parent
62753e882e
commit
54a36bc54f
|
@ -617,7 +617,7 @@ void FS_USER::SetPriority(Kernel::HLERequestContext& ctx) {
|
|||
void FS_USER::GetPriority(Kernel::HLERequestContext& ctx) {
|
||||
IPC::RequestParser rp(ctx, 0x863, 0, 0);
|
||||
|
||||
if (priority == -1) {
|
||||
if (priority == UINT32_MAX) {
|
||||
LOG_INFO(Service_FS, "priority was not set, priority=0x{:X}", priority);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue