Fix brace coding style issues
- Add missing braces to one-line if blocks - Move opening brace to line end Signed-off-by: Michael Straube <straubem@gmx.de>
This commit is contained in:
parent
064e7280cb
commit
64b7edd2fe
2 changed files with 5 additions and 4 deletions
|
@ -238,8 +238,7 @@ static alpm_list_t *find_unused(alpm_list_t *deltas, const char *to, off_t quota
|
|||
for(i = vertices; i; i = i->next) {
|
||||
alpm_graph_t *v = i->data;
|
||||
alpm_delta_t *vdelta = v->data;
|
||||
if(strcmp(vdelta->to, to) == 0)
|
||||
{
|
||||
if(strcmp(vdelta->to, to) == 0) {
|
||||
v->weight = vdelta->download_size;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -271,8 +271,9 @@ alpm_list_t SYMEXPORT *alpm_find_group_pkgs(alpm_list_t *dbs,
|
|||
alpm_db_t *db = i->data;
|
||||
alpm_group_t *grp = alpm_db_get_group(db, name);
|
||||
|
||||
if(!grp)
|
||||
if(!grp) {
|
||||
continue;
|
||||
}
|
||||
|
||||
for(j = grp->packages; j; j = j->next) {
|
||||
alpm_pkg_t *pkg = j->data;
|
||||
|
@ -288,8 +289,9 @@ alpm_list_t SYMEXPORT *alpm_find_group_pkgs(alpm_list_t *dbs,
|
|||
};
|
||||
ignorelist = alpm_list_add(ignorelist, pkg);
|
||||
QUESTION(db->handle, &question);
|
||||
if(!question.install)
|
||||
if(!question.install) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if(!alpm_pkg_find(pkgs, pkg->name)) {
|
||||
pkgs = alpm_list_add(pkgs, pkg);
|
||||
|
|
Loading…
Add table
Reference in a new issue