From c00e05992e142219c30caf154d62d6166ae28338 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 13 Dec 2010 20:19:32 -0600 Subject: Remove non-public functions from header And rename accordingly. Signed-off-by: Dan McGee --- lib/libalpm/be_sync.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libalpm/be_sync.c') 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, }; -- cgit v1.2.3-54-g00ecf