summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Debian/Dgit.pm4
-rwxr-xr-xdgit2
2 files changed, 3 insertions, 3 deletions
diff --git a/Debian/Dgit.pm b/Debian/Dgit.pm
index c0ee27f..57b79e8 100644
--- a/Debian/Dgit.pm
+++ b/Debian/Dgit.pm
@@ -225,11 +225,11 @@ sub _us () {
}
sub failmsg {
- my $s = "@_\n";
+ my $s = "error: @_\n";
$s =~ s/\n\n$/\n/;
my $prefix = _us().": ";
$s =~ s/^/$prefix/gm;
- return $s;
+ return "\n".$s;
}
sub fail {
diff --git a/dgit b/dgit
index 05cf90d..961d974 100755
--- a/dgit
+++ b/dgit
@@ -5326,7 +5326,7 @@ sub quiltify ($$$$) {
return $s;
};
if ($quilt_mode eq 'linear') {
- print STDERR "$us: quilt fixup cannot be linear. Stopped at:\n";
+ print STDERR "\n$us: error: quilt fixup cannot be linear. Stopped at:\n";
foreach my $notp (@nots) {
print STDERR "$us: ", $reportnot->($notp), "\n";
}