Mark sync_db_read() as static

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2010-12-13 20:16:36 -06:00
parent 5f36523af9
commit 94d3d665f0
2 changed files with 6 additions and 3 deletions

View File

@ -141,6 +141,9 @@ int SYMEXPORT alpm_db_update(int force, pmdb_t *db)
return(0);
}
/* 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)
{
int count = 0;
@ -205,7 +208,7 @@ int _alpm_sync_db_populate(pmdb_t *db)
count++;
} else {
/* we have desc, depends or deltas - parse it */
_alpm_sync_db_read(db, archive, entry);
sync_db_read(db, archive, entry);
}
}
@ -215,7 +218,7 @@ int _alpm_sync_db_populate(pmdb_t *db)
return(count);
}
int _alpm_sync_db_read(pmdb_t *db, struct archive *archive, struct archive_entry *entry)
static int sync_db_read(pmdb_t *db, struct archive *archive, struct archive_entry *entry)
{
char line[1024];
const char *entryname = NULL;
@ -416,6 +419,7 @@ int _alpm_sync_db_read(pmdb_t *db, struct archive *archive, struct archive_entry
error:
FREE(pkgname);
FREE(filename);
/* TODO: return 0 always? */
return(0);
}

View File

@ -81,7 +81,6 @@ int _alpm_local_db_write(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq);
int _alpm_local_db_remove(pmdb_t *db, pmpkg_t *info);
int _alpm_sync_db_populate(pmdb_t *db);
int _alpm_sync_db_read(pmdb_t *db, struct archive *archive, struct archive_entry *entry);
/* cache bullshit */
/* packages */