From a2356d5ae3cdc6ac28ed614e0e5e7e75174728e9 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 12 Sep 2011 09:55:47 -0500 Subject: Don't duplicate header strings There is no need to print them into buffers; we can use the values returned by gettext() directly without issue. Signed-off-by: Dan McGee --- src/pacman/util.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/pacman/util.c b/src/pacman/util.c index 594186f6..9e390b2d 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -740,15 +740,15 @@ static alpm_list_t *create_verbose_header(int install) alpm_list_t *res = NULL; char *str; - pm_asprintf(&str, "%s", _("Name")); + str = _("Name"); res = alpm_list_add(res, str); - pm_asprintf(&str, "%s", _("Old Version")); + str = _("Old Version"); res = alpm_list_add(res, str); if(install) { - pm_asprintf(&str, "%s", _("New Version")); + str = _("New Version"); res = alpm_list_add(res, str); } - pm_asprintf(&str, "%s", _("Size")); + str = _("Size"); res = alpm_list_add(res, str); return res; @@ -867,7 +867,7 @@ out: FREELIST(lp); } alpm_list_free(targets); - FREELIST(header); + alpm_list_free(header); } else { FREELIST(targets); } -- cgit v1.2.3-24-g4f1b