1
0
Fork 0
forked from len0rd/rockbox

misc: Fix up more gcc9 warnings

Change-Id: Ia2f763ca7494c6a93b48bdd347a91f3d1a967f29
This commit is contained in:
Solomon Peachy 2025-09-21 08:52:04 -04:00
parent b71fb1f12a
commit d7d80a0c3a

View file

@ -67,13 +67,13 @@ int rtc_write_datetime(const struct tm *tm)
/* Check whether the unit has been started by the RTC alarm function */
bool rtc_check_alarm_started(bool release_alarm)
{
if (GSTATUS3)
if (GSTATUS3)
{
GSTATUS3 &= ~release_alarm;
GSTATUS3 &= ~release_alarm;
return true;
}
else
{
}
else
{
return false;
}
}