Radish alpha
H
HardenedBSD Package Manager
Radicle
Git (anonymous pull)
Log in to clone via SSH
Add missing '\n' in pkg anotate error messages
Baptiste Daroussin committed 10 years ago
commit 821129ac8882a0838a638f441e490c07cce0a486
parent ebc355c6c2cb816239284902643fd5d7a2ad3914
1 file changed +2 -2
modified src/annotate.c
@@ -128,11 +128,11 @@ do_delete(struct pkgdb *db, struct pkg *pkg, const char *tag)
		} else if (ret == EPKG_WARN) {
			if (!quiet) {
				pkg_warnx("%n-%v: Cannot delete annotation "
-
				     "tagged: %S -- because there is none",
+
				     "tagged: %S -- because there is none\n",
				     pkg, pkg, tag);
			}
		} else {
-
			pkg_warnx("%n-%v: Failed to delete annotation tagged: %S",
+
			pkg_warnx("%n-%v: Failed to delete annotation tagged: %S\n",
			     pkg, pkg, tag);
		}
	}