diff options
author | Dan McGee <dan@archlinux.org> | 2007-10-09 04:25:52 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-10-09 04:25:52 +0200 |
commit | 6db0562b8d3cda777650521f1205a541d0e0aa93 (patch) | |
tree | 5a85048cde8e8b45b1e20fc947a70730b841c9f5 /lib/libalpm/sync.c | |
parent | 087b8df781fb229033e9c01f58cdf80f0ddd29e6 (diff) | |
download | pacman-6db0562b8d3cda777650521f1205a541d0e0aa93.tar.gz pacman-6db0562b8d3cda777650521f1205a541d0e0aa93.tar.xz |
Add gcc format attribute to _alpm_log, catch a few bugs in the process
This fixed a few of our formatted output strings that were broken before
but never being checked.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/sync.c')
-rw-r--r-- | lib/libalpm/sync.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index f21f7d35..d24a1e52 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -281,7 +281,8 @@ int _alpm_sync_addtarget(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sy if(!p) { RET_ERR(PM_ERR_PKG_NOT_FOUND, -1); } - _alpm_log(PM_LOG_DEBUG, "found '%s' as a provision for '%s'\n", p->data, targ); + _alpm_log(PM_LOG_DEBUG, "found '%s' as a provision for '%s'\n", + (char *)p->data, targ); spkg = _alpm_db_get_pkgfromcache(db, p->data); alpm_list_free(p); } @@ -304,7 +305,8 @@ int _alpm_sync_addtarget(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t *dbs_sy pmdb_t *db = j->data; alpm_list_t *p = _alpm_db_whatprovides(db, targ); if(p) { - _alpm_log(PM_LOG_DEBUG, "found '%s' as a provision for '%s'\n", p->data, targ); + _alpm_log(PM_LOG_DEBUG, "found '%s' as a provision for '%s'\n", + (char *)p->data, targ); spkg = _alpm_db_get_pkgfromcache(db, p->data); alpm_list_free(p); } |