diff options
author | Jason St. John <jstjohn@purdue.edu> | 2013-10-31 17:31:32 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-11-08 09:28:05 +1000 |
commit | 88df07717de868dc2bd2424afefaea6c77efa4c0 (patch) | |
tree | b6d34122e5f6994a00c92c783597f7aa32a6f9dd /lib/libalpm | |
parent | 14cc790c59e55f4a3f4d7fc47a2f60c468c5887b (diff) | |
download | pacman-88df07717de868dc2bd2424afefaea6c77efa4c0.tar.xz |
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>
Diffstat (limited to 'lib/libalpm')
-rw-r--r-- | lib/libalpm/dload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c index 7782f8dc..866c51df 100644 --- a/lib/libalpm/dload.c +++ b/lib/libalpm/dload.c @@ -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); |