summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/be_sync.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-12-14 03:19:32 +0100
committerDan McGee <dan@archlinux.org>2010-12-14 04:16:47 +0100
commitc00e05992e142219c30caf154d62d6166ae28338 (patch)
treeaaad1b29bc5dc07a76bb3e9aa3f8b96e30fe1585 /lib/libalpm/be_sync.c
parent94d3d665f0b0b4c934de73580afcb137fea9baa6 (diff)
downloadpacman-c00e05992e142219c30caf154d62d6166ae28338.tar.gz
pacman-c00e05992e142219c30caf154d62d6166ae28338.tar.xz
Remove non-public functions from header
And rename accordingly. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/be_sync.c')
-rw-r--r--lib/libalpm/be_sync.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/be_sync.c b/lib/libalpm/be_sync.c
index 6059277b..72caa507 100644
--- a/lib/libalpm/be_sync.c
+++ b/lib/libalpm/be_sync.c
@@ -144,7 +144,7 @@ int SYMEXPORT alpm_db_update(int force, pmdb_t *db)
/* Forward decl so I don't reorganize the whole file right now */
static int sync_db_read(pmdb_t *db, struct archive *archive, struct archive_entry *entry);
-int _alpm_sync_db_populate(pmdb_t *db)
+static int sync_db_populate(pmdb_t *db)
{
int count = 0;
struct archive *archive;
@@ -424,7 +424,7 @@ error:
}
struct db_operations sync_db_ops = {
- .populate = _alpm_sync_db_populate,
+ .populate = sync_db_populate,
.unregister = _alpm_db_unregister,
};