summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/dload.c
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-07-04 01:58:19 +0200
committerDave Reisner <dreisner@archlinux.org>2011-07-05 23:18:23 +0200
commit44889da5b704483b7ee013ec828ff64b64980de8 (patch)
tree3ea61d6b31d06636c7c82437e3fecc52343c5fa3 /lib/libalpm/dload.c
parent6cce517f1a78df885a1574252b3db9886185159d (diff)
downloadpacman-44889da5b704483b7ee013ec828ff64b64980de8.tar.gz
pacman-44889da5b704483b7ee013ec828ff64b64980de8.tar.xz
dload: rearrange code to avoid extra cpp block
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'lib/libalpm/dload.c')
-rw-r--r--lib/libalpm/dload.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c
index 4b4d8dff..b93182f3 100644
--- a/lib/libalpm/dload.c
+++ b/lib/libalpm/dload.c
@@ -42,10 +42,6 @@
#include "util.h"
#include "handle.h"
-#ifdef HAVE_LIBCURL
-static double prevprogress; /* last download amount */
-#endif
-
static const char *get_filename(const char *url)
{
char *filename = strrchr(url, '/');
@@ -56,6 +52,8 @@ static const char *get_filename(const char *url)
}
#ifdef HAVE_LIBCURL
+static double prevprogress; /* last download amount */
+
static char *get_fullpath(const char *path, const char *filename,
const char *suffix)
{