Remove spaces between the opening "if" and the opening parenthesis

Signed-off-by: Jason St. John <jstjohn@purdue.edu>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Jason St. John 2013-10-31 17:31:32 -04:00 committed by Allan McRae
parent 14cc790c59
commit 88df07717d
3 changed files with 3 additions and 3 deletions

View File

@ -547,7 +547,7 @@ static int curl_download_internal(struct dload_payload *payload,
goto cleanup;
}
if (payload->trust_remote_name) {
if(payload->trust_remote_name) {
if(payload->content_disp_name) {
/* content-disposition header has a better name for our file */
free(payload->destfile_name);

View File

@ -391,7 +391,7 @@ static int sync_group(int level, alpm_list_t *syncs, alpm_list_t *targets)
}
}
}
if (!found) {
if(!found) {
ret = 1;
}
}

View File

@ -611,7 +611,7 @@ static int table_display(const alpm_list_t *header,
return -1;
}
if (header) {
if(header) {
table_print_line(header, padding, totalcols, widths, has_data);
printf("\n");
}