summaryrefslogtreecommitdiffstats
path: root/libopkg/opkg_download.c
diff options
context:
space:
mode:
authorpixdamix <pixdamix@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2009-10-28 17:00:56 (EDT)
committer pixdamix <pixdamix@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2009-10-28 17:00:56 (EDT)
commit26e659c660b69b5ecdd1bd6f6bf85520211b810e (patch)
tree674b13aaf7a4781c6d22c0d5e9e07046ced94257 /libopkg/opkg_download.c
parenta1fc2ffe4491e0df37bb173e0d452c3b2b3ec498 (diff)
Removed a unused variable warning
When compiled without openssl nor gpg signature verification opkg build fail due to 3 unused variable and -Werror git-svn-id: http://opkg.googlecode.com/svn/trunk@226 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg/opkg_download.c')
-rw-r--r--libopkg/opkg_download.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libopkg/opkg_download.c b/libopkg/opkg_download.c
index e31c49c..7dc965b 100644
--- a/libopkg/opkg_download.c
+++ b/libopkg/opkg_download.c
@@ -447,6 +447,10 @@ verify_file_end:
return status;
#else
+ /* mute `unused variable' warnings. */
+ (void) sig_file;
+ (void) text_file;
+ (void) conf;
return 0;
#endif
}