summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-03-12 21:47:29 -0500
committerDan McGee <dan@archlinux.org>2012-03-12 21:47:29 -0500
commit5bda38196fbd6ad389fd829924736b007732e2f1 (patch)
treee43ad11db81a7b72254517e9b406fc64cf20f2f9 /src
parent8de0631edbd1fd7681f6a924f5e166621328c13f (diff)
Minor format-string related cleanups
We had one stubbed out so we didn't require a translation update, and the other is more a code style issue. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/util.c b/src/pacman/util.c
index 7be3dc5c..c5f7a3bc 100644
--- a/src/pacman/util.c
+++ b/src/pacman/util.c
@@ -1146,7 +1146,7 @@ void print_packages(const alpm_list_t *packages)
free(size);
free(temp);
}
- printf("%s\n",string);
+ printf("%s\n", string);
free(string);
}
}