summaryrefslogtreecommitdiffstats
path: root/Utilities/cmlibarchive/libarchive/archive_read.c
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-11-04 22:25:35 (GMT)
committerBrad King <brad.king@kitware.com>2009-11-04 22:25:35 (GMT)
commit593bb64d160896c721a33c0247aa14d47f7fc5ac (patch)
tree387060fc3df6e3ae075d98fbbda86352a20a95c7 /Utilities/cmlibarchive/libarchive/archive_read.c
parent4c6f63a4090e844295c1eed89394c06dfe974863 (diff)
downloadCMake-593bb64d160896c721a33c0247aa14d47f7fc5ac.zip
CMake-593bb64d160896c721a33c0247aa14d47f7fc5ac.tar.gz
CMake-593bb64d160896c721a33c0247aa14d47f7fc5ac.tar.bz2
libarchive: Use consistent function storage class
Functions declared 'static' should be defined 'static' too.
Diffstat (limited to 'Utilities/cmlibarchive/libarchive/archive_read.c')
-rw-r--r--Utilities/cmlibarchive/libarchive/archive_read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmlibarchive/libarchive/archive_read.c b/Utilities/cmlibarchive/libarchive/archive_read.c
index cd4416c..e4bdaa6 100644
--- a/Utilities/cmlibarchive/libarchive/archive_read.c
+++ b/Utilities/cmlibarchive/libarchive/archive_read.c
@@ -768,7 +768,7 @@ _archive_read_close(struct archive *_a)
/*
* Release memory and other resources.
*/
-int
+static int
_archive_read_finish(struct archive *_a)
{
struct archive_read *a = (struct archive_read *)_a;