diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-07 19:41:33 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-09 21:24:45 +0200 |
commit | 7968d30510de5a6031af39da498be5c821290b82 (patch) | |
tree | 234c6c99ca5ce0efd5034c4eaedb9b89f1e81686 /lib/libalpm/remove.c | |
parent | e826c143d3e9d21485f72c5490b2a907c936024e (diff) | |
download | pacman-7968d30510de5a6031af39da498be5c821290b82.tar.gz pacman-7968d30510de5a6031af39da498be5c821290b82.tar.xz |
Require handle argument to alpm_logaction()
This is the first in a series of patches to update the API to remove the
implicit global handle variable.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/remove.c')
-rw-r--r-- | lib/libalpm/remove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index a4b60cf4..f32e77d8 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -261,7 +261,7 @@ static void unlink_file(pmhandle_t *handle, pmpkg_t *info, char *filename, snprintf(newpath, PATH_MAX, "%s.pacsave", file); rename(file, newpath); _alpm_log(PM_LOG_WARNING, _("%s saved as %s\n"), file, newpath); - alpm_logaction("warning: %s saved as %s\n", file, newpath); + alpm_logaction(handle, "warning: %s saved as %s\n", file, newpath); return; } } |