Add default cases to some switch statements

This squelches several compiler warnings.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2014-05-18 11:22:22 +02:00
parent 411b8078b9
commit 4cd2fd36d5
3 changed files with 26 additions and 5 deletions

View File

@@ -867,6 +867,8 @@ int parse_duration(const char *string, unsigned *duration)
case STATE_HHMM_MM:
return 0;
break;
default:
break;
}
in = 0;