diff options
author | Dan McGee <dan@archlinux.org> | 2007-08-23 22:26:55 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-08-23 22:26:55 -0400 |
commit | 5c9eec5570c145c07660bd2ba207b579eda0f26c (patch) | |
tree | d8fb3e1bb389f40469cec4210b4edb54c23f6f73 /src | |
parent | 2798ebbb6286b7a0acc4b5ff10906c1a92ecc946 (diff) |
libalpm: add newlines to all strings passed to log callback
This allows us to remove the hack in the frontend where we added a newline
to everything coming out of the pm_printf functions, and instead let the
developer put newlines where they want them. This should be the last hangover
of that auto-newline stuff.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/util.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pacman/util.c b/src/pacman/util.c index b2199821..148e947a 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -503,8 +503,6 @@ int pm_vfprintf(FILE *stream, pmloglevel_t level, const char *format, va_list ar /* print the message using va_arg list */ ret = vfprintf(stream, format, args); - /* TEMP HACK because libalpm strings don't have \n */ - fprintf(stream, "\n"); return(ret); } |