() -> (void)

This commit is contained in:
fincs 2016-06-10 18:14:30 +02:00
parent 6d65d537b3
commit 56a11197c7
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ void aptSignalReadyForSleep(void);
* @brief Gets whether to allow the system to enter sleep mode.
* @return Whether sleep mode is allowed.
*/
bool aptIsSleepAllowed();
bool aptIsSleepAllowed(void);
/**
* @brief Sets whether to allow the system to enter sleep mode.

View File

@ -719,7 +719,7 @@ void aptSignalReadyForSleep(void)
svcSignalEvent(aptSleepSync);
}
bool aptIsSleepAllowed()
bool aptIsSleepAllowed(void)
{
return aptSleepAllowed;
}