summaryrefslogtreecommitdiff
path: root/lib/libalpm/delta.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libalpm/delta.c')
-rw-r--r--lib/libalpm/delta.c3
1 files changed, 1 insertions, 2 deletions
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;
}
}