summaryrefslogtreecommitdiffstats
path: root/libopkg/pkg.c
diff options
context:
space:
mode:
authorgraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2009-12-14 00:57:47 (EST)
committer graham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2009-12-14 00:57:47 (EST)
commitf5561428256847e24e7a5a688f26a92d12372f75 (patch)
tree37d941b3d838abf5161eafb3f43ec236ab73b72b /libopkg/pkg.c
parent0166b039680ca27ed48677680be4fe10846613a4 (diff)
Don't need \n for perrors.
git-svn-id: http://opkg.googlecode.com/svn/trunk@491 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg/pkg.c')
-rw-r--r--libopkg/pkg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/pkg.c b/libopkg/pkg.c
index 411817b..e541825 100644
--- a/libopkg/pkg.c
+++ b/libopkg/pkg.c
@@ -1120,7 +1120,7 @@ pkg_get_installed_files(pkg_t *pkg)
pkg->dest->info_dir, pkg->name);
list_file = fopen(list_file_name, "r");
if (list_file == NULL) {
- opkg_perror(ERROR, "Failed to open %s.\n",
+ opkg_perror(ERROR, "Failed to open %s",
list_file_name);
free(list_file_name);
return pkg->installed_files;