Compiler food.
commitaaf934eb2fdb76a57520eda35f77e27e1c149722
authorIain Patterson <wm@iain.cx>
Wed, 4 Apr 2012 11:41:38 +0000 (4 12:41 +0100)
committerCarlos R. Mafra <crmafra@gmail.com>
Wed, 4 Apr 2012 12:02:58 +0000 (4 13:02 +0100)
tree1b133f6214e8fd0127fbfaa69bf02cd2bf6c8716
parent056a290a7deec098de72f81a48edbb83b1faf42f
Compiler food.

main.c: In function ‘RelaunchWindow’:
main.c:461:1: warning: control reaches end of non-void function
[-Wreturn-type]

Actually we can't reach the end of the function because the three
possible cases are Exit(-1), return False and return True.  Of course if
Exit() were ever changed the above statement might become incorrect.
Some compiler food silences the warning.
src/main.c