Remove useless break statements

This commit is contained in:
Tobias Brunner
2018-11-12 17:36:22 +01:00
parent ff3f09af45
commit de80946f6a
7 changed files with 1 additions and 11 deletions
-2
View File
@@ -710,7 +710,6 @@ static enumerator_t *create_lease_query(char *filter, array_t **to_free)
default:
fprintf(stderr, "invalid filter string.\n");
exit(EXIT_FAILURE);
break;
}
}
query = db->query(db,
@@ -1142,7 +1141,6 @@ static void do_args(int argc, char *argv[])
default:
usage();
exit(EXIT_FAILURE);
break;
}
break;
}