summaryrefslogtreecommitdiffstats
path: root/src/pacman/deptest.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-04-26 21:28:54 +0200
committerDan McGee <dan@archlinux.org>2007-04-26 21:28:54 +0200
commit961be77c93b487987600cd041bef3aa656949724 (patch)
tree7f3dc977420612b03066459db95bc5618cf2b5df /src/pacman/deptest.c
parentf0304168ee4fa6473f72351b7332b3773824f82b (diff)
downloadpacman-961be77c93b487987600cd041bef3aa656949724.tar.gz
pacman-961be77c93b487987600cd041bef3aa656949724.tar.xz
Remove MSG output macro (#define and in code)
This is the first step of converting output to standard functions such as printf, and eventually allowing compiliation with the -pedantic flag as is done on the libalpm side. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/pacman/deptest.c')
-rw-r--r--src/pacman/deptest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/deptest.c b/src/pacman/deptest.c
index 409cc25b..120c8a00 100644
--- a/src/pacman/deptest.c
+++ b/src/pacman/deptest.c
@@ -79,7 +79,7 @@ int pacman_deptest(alpm_list_t *targets)
}
if(!found) {
- MSG(NL, "%s", saved_target);
+ printf("%s", saved_target);
retval = 1;
}
free(saved_target);