From 961be77c93b487987600cd041bef3aa656949724 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 26 Apr 2007 15:28:54 -0400 Subject: 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 --- src/pacman/deptest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pacman/deptest.c') 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); -- cgit v1.2.3-24-g4f1b