address_arbiter: Resolve sign conversion warning
Makes our type conversion explicit.
This commit is contained in:
parent
07691f994a
commit
1a45b15a8c
|
@ -81,7 +81,7 @@ ResultCode AddressArbiter::IncrementAndSignalToAddressIfEqual(VAddr address, s32
|
|||
do {
|
||||
current_value = monitor.ExclusiveRead32(current_core, address);
|
||||
|
||||
if (current_value != value) {
|
||||
if (current_value != static_cast<u32>(value)) {
|
||||
return ERR_INVALID_STATE;
|
||||
}
|
||||
current_value++;
|
||||
|
|
Loading…
Reference in New Issue