index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | lib/libalpm/delta.c | 3 |
diff --git a/lib/libalpm/delta.c b/lib/libalpm/delta.c index 89bc32ff..0138aac1 100644 --- a/lib/libalpm/delta.c +++ b/lib/libalpm/delta.c @@ -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; } } |