summaryrefslogtreecommitdiff
path: root/src/pacman/output.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-04-26 15:28:54 -0400
committerDan McGee <dan@archlinux.org>2007-04-26 15:28:54 -0400
commit961be77c93b487987600cd041bef3aa656949724 (patch)
tree7f3dc977420612b03066459db95bc5618cf2b5df /src/pacman/output.c
parentf0304168ee4fa6473f72351b7332b3773824f82b (diff)
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/output.c')
-rw-r--r--src/pacman/output.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pacman/output.c b/src/pacman/output.c
index 23b03373..85defaa2 100644
--- a/src/pacman/output.c
+++ b/src/pacman/output.c
@@ -41,12 +41,6 @@ extern config_t *config;
static int neednl = 0; /* for cleaner message output */
static int needpad = 0; /* pad blanks to terminal width */
-/* simple helper for needpad */
-void set_output_padding(int on)
-{
- needpad = on;
-}
-
/* Wrapper to fprintf() that allows to choose if we want the output
* to be appended on the current line, or written to a new one
*/