summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/dload.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-08-09 22:21:02 +0200
committerDan McGee <dan@archlinux.org>2011-08-09 22:40:21 +0200
commit6803260f2608b0a0028f5382c5a498d61bce45c3 (patch)
tree8dd3f0036c7540f24d0e63261f263b2117d4a9cb /lib/libalpm/dload.c
parent40ea6cd607d5edb2699c084259b237d435313670 (diff)
downloadpacman-6803260f2608b0a0028f5382c5a498d61bce45c3.tar.gz
pacman-6803260f2608b0a0028f5382c5a498d61bce45c3.tar.xz
Fix compile error when curl is not used
Noticed in my PowerPC Linux VM: cc1: warnings being treated as errors dload.c:45: error: 'get_filename' defined but not used make[3]: *** [dload.lo] Error 1 Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/dload.c')
-rw-r--r--lib/libalpm/dload.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c
index dc4f91e5..ac47e94a 100644
--- a/lib/libalpm/dload.c
+++ b/lib/libalpm/dload.c
@@ -42,6 +42,9 @@
#include "util.h"
#include "handle.h"
+#ifdef HAVE_LIBCURL
+static double prevprogress; /* last download amount */
+
static const char *get_filename(const char *url)
{
char *filename = strrchr(url, '/');
@@ -51,9 +54,6 @@ static const char *get_filename(const char *url)
return filename;
}
-#ifdef HAVE_LIBCURL
-static double prevprogress; /* last download amount */
-
static char *get_fullpath(const char *path, const char *filename,
const char *suffix)
{