[pacman-dev] CVS update of pacman-lib/src/pacman (add.c sync.c)
dan at archlinux.org
dan at archlinux.org
Sat Feb 3 02:29:51 EST 2007
Date: Saturday, February 3, 2007 @ 02:29:51
Author: dan
Path: /home/cvs-pacman/pacman-lib/src/pacman
Modified: add.c (1.28 -> 1.29) sync.c (1.106 -> 1.107)
Add newlines to error messages
--------+
add.c | 4 ++--
sync.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
Index: pacman-lib/src/pacman/add.c
diff -u pacman-lib/src/pacman/add.c:1.28 pacman-lib/src/pacman/add.c:1.29
--- pacman-lib/src/pacman/add.c:1.28 Thu Feb 1 01:35:30 2007
+++ pacman-lib/src/pacman/add.c Sat Feb 3 02:29:51 2007
@@ -124,14 +124,14 @@
pmconflict_t *conflict = alpm_list_getdata(i);
switch(alpm_conflict_get_type(conflict)) {
case PM_CONFLICT_TYPE_TARGET:
- MSG(NL, _("%s%s exists in \"%s\" (target) and \"%s\" (target)"),
+ MSG(NL, _("%s%s exists in \"%s\" (target) and \"%s\" (target)\n"),
alpm_option_get_root(),
alpm_conflict_get_file(conflict),
alpm_conflict_get_target(conflict),
alpm_conflict_get_ctarget(conflict));
break;
case PM_CONFLICT_TYPE_FILE:
- MSG(NL, _("%s: %s%s exists in filesystem"),
+ MSG(NL, _("%s: %s%s exists in filesystem\n"),
alpm_conflict_get_target(conflict),
alpm_option_get_root(),
alpm_conflict_get_file(conflict));
Index: pacman-lib/src/pacman/sync.c
diff -u pacman-lib/src/pacman/sync.c:1.106 pacman-lib/src/pacman/sync.c:1.107
--- pacman-lib/src/pacman/sync.c:1.106 Thu Feb 1 01:35:30 2007
+++ pacman-lib/src/pacman/sync.c Sat Feb 3 02:29:51 2007
@@ -718,14 +718,14 @@
pmconflict_t *conflict = alpm_list_getdata(i);
switch(alpm_conflict_get_type(conflict)) {
case PM_CONFLICT_TYPE_TARGET:
- MSG(NL, _("%s%s exists in \"%s\" (target) and \"%s\" (target)"),
+ MSG(NL, _("%s%s exists in \"%s\" (target) and \"%s\" (target)\n"),
alpm_option_get_root(),
alpm_conflict_get_file(conflict),
alpm_conflict_get_target(conflict),
alpm_conflict_get_ctarget(conflict));
break;
case PM_CONFLICT_TYPE_FILE:
- MSG(NL, _("%s: %s%s exists in filesystem"),
+ MSG(NL, _("%s: %s%s exists in filesystem\n"),
alpm_conflict_get_target(conflict),
alpm_option_get_root(),
alpm_conflict_get_file(conflict));
More information about the pacman-dev
mailing list