Trivial: Add break statement

In case we ever extend the enum/switch and unwittingly introduce a bug.
This commit is contained in:
Denis Kenzior 2010-03-19 13:51:31 -05:00
parent 9a398a1087
commit d6e78f7828
1 changed files with 3 additions and 0 deletions

View File

@ -612,6 +612,9 @@ gboolean is_valid_pin(const char *pin, enum pin_type type)
case PIN_TYPE_NONE:
if (i < 8)
return TRUE;
break;
default:
break;
}
return FALSE;