1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-02-28 17:31:52 -05:00

pacman/util.c: add missing braces

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Andrew Gregory 2013-05-04 09:36:02 -04:00 committed by Allan McRae
parent 34da9d25e4
commit 692633264a

View File

@ -847,8 +847,9 @@ static void display_transaction_sizes(alpm_list_t *table)
struct table_row_t *row = i->data;
int len = string_length(row->label);
if(len > max_len)
if(len > max_len) {
max_len = len;
}
}
max_len += 2;