summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Straube <straubem@gmx.de>2017-07-13 21:30:59 +0200
committerAllan McRae <allan@archlinux.org>2017-07-28 12:33:24 +1000
commit064e7280cb2608747b2ce628f7e8faf7745f0707 (patch)
tree365f738b6411cb146b91994d2126f8eb301414b8
parentb4a197a6155d6cb4d02e712bf324beb0502b4d51 (diff)
downloadpacman-064e7280cb2608747b2ce628f7e8faf7745f0707.tar.gz
pacman-064e7280cb2608747b2ce628f7e8faf7745f0707.zip
Fix coding style issue in pacman/util.c
Add missing braces to some one-line if blocks. Signed-off-by: Michael Straube <straubem@gmx.de> Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r--src/pacman/util.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/pacman/util.c b/src/pacman/util.c
index ae8a74d3..9784d627 100644
--- a/src/pacman/util.c
+++ b/src/pacman/util.c
@@ -1299,8 +1299,9 @@ void select_display(const alpm_list_t *pkglist)
alpm_pkg_t *pkg = i->data;
alpm_db_t *db = alpm_pkg_get_db(pkg);
- if(!dbname)
+ if(!dbname) {
dbname = alpm_db_get_name(db);
+ }
if(strcmp(alpm_db_get_name(db), dbname) != 0) {
display_repo_list(dbname, list, cols);
FREELIST(list);
@@ -1349,8 +1350,9 @@ static int multiselect_parse(char *array, int count, char *response)
break;
}
len = strtrim(starts);
- if(len == 0)
+ if(len == 0) {
continue;
+ }
if(*starts == '^') {
starts++;
@@ -1370,8 +1372,9 @@ static int multiselect_parse(char *array, int count, char *response)
}
}
- if(parseindex(starts, &start, 1, count) != 0)
+ if(parseindex(starts, &start, 1, count) != 0) {
return -1;
+ }
if(!ends) {
array[start - 1] = include;
@@ -1495,8 +1498,9 @@ int select_question(int count)
size_t len = strtrim(response);
if(len > 0) {
int n;
- if(parseindex(response, &n, 1, count) != 0)
+ if(parseindex(response, &n, 1, count) != 0) {
continue;
+ }
return (n - 1);
}
}