diff options
author | Dan McGee <dan@archlinux.org> | 2008-01-01 19:57:02 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-01 20:03:24 -0600 |
commit | 4abd710ec993bf5766fdbf2f1cf240a8d6e7d17f (patch) | |
tree | b674f32972e3571f5851435f77db1a989b4733c6 /lib/libalpm/be_files.c | |
parent | 860465b34ba86bdced01ec494cffb94f95301445 (diff) | |
download | pacman-4abd710ec993bf5766fdbf2f1cf240a8d6e7d17f.tar.xz |
Remove gettext calls from debug-level messages
These used FUNCTION output level and not DEBUG, so I didn't catch them way
back when I removed those gettext calls. Remove them now (which exposed a
nice little memory access error elsewhere in the code). This should have a
slight speedup effect on the code too as we no longer have to make the
gettext call even when these messages aren't printed.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/be_files.c')
-rw-r--r-- | lib/libalpm/be_files.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libalpm/be_files.c b/lib/libalpm/be_files.c index 7df0b8b6..724e3c8f 100644 --- a/lib/libalpm/be_files.c +++ b/lib/libalpm/be_files.c @@ -270,7 +270,8 @@ int _alpm_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq) /* already loaded this info, do nothing */ return(0); } - _alpm_log(PM_LOG_FUNCTION, _("loading package data for %s : level=%d\n"), info->name, inforeq); + _alpm_log(PM_LOG_FUNCTION, "loading package data for %s : level=0x%x\n", + info->name, inforeq); /* clear out 'line', to be certain - and to make valgrind happy */ memset(line, 0, 513); |