Mark game_mode_context_loop as 'noreturn'

The function contains the main-loop of the daemon and will indeed
never return.
This commit is contained in:
Christian Kellner 2019-03-21 13:53:11 +01:00 committed by Alex Smith
parent d12ab6830f
commit c34186be07

View File

@ -38,7 +38,7 @@ POSSIBILITY OF SUCH DAMAGE.
/** /**
* Run the main D-BUS loop "forever" * Run the main D-BUS loop "forever"
*/ */
void game_mode_context_loop(GameModeContext *context); void game_mode_context_loop(GameModeContext *context) __attribute__((noreturn));
/** /**
* Inhibit the screensaver * Inhibit the screensaver