summaryrefslogtreecommitdiffstats
path: root/Utilities/cmlibarchive/libarchive/archive_entry.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_entry.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_entry.c')
-rw-r--r--Utilities/cmlibarchive/libarchive/archive_entry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/cmlibarchive/libarchive/archive_entry.c b/Utilities/cmlibarchive/libarchive/archive_entry.c
index 9c55071..d75dde5 100644
--- a/Utilities/cmlibarchive/libarchive/archive_entry.c
+++ b/Utilities/cmlibarchive/libarchive/archive_entry.c
@@ -1199,7 +1199,7 @@ archive_entry_acl_add_entry_w(struct archive_entry *entry,
archive_entry_acl_add_entry_w_len(entry, type, permset, tag, id, name, wcslen(name));
}
-void
+static void
archive_entry_acl_add_entry_w_len(struct archive_entry *entry,
int type, int permset, int tag, int id, const wchar_t *name, size_t len)
{