diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-07 13:13:30 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-07 13:13:30 +0100 |
commit | 5c2dcb40e40a789b1bf2a3b19429acd23c7674b1 (patch) | |
tree | a529ac0457317a92b202ff233752a134d7120880 /menuchoixpersos.c | |
parent | c538eeef891e08d81ec6adf7fb3aea57a3b81393 (diff) |
handle default cases in switches
since gcc produces warnings when default cases are not handled, make it
happy.
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'menuchoixpersos.c')
-rw-r--r-- | menuchoixpersos.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/menuchoixpersos.c b/menuchoixpersos.c index a41d548..a137611 100644 --- a/menuchoixpersos.c +++ b/menuchoixpersos.c @@ -86,6 +86,8 @@ void Fmenuchoixpersos (SURFACES *surfaces, POSITIONS *positions) Vnbperso++; continuer=0; break; + default: + break; } break; } |