Skip to content

Commit

Permalink
mxmirror: Add \n after error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed May 13, 2019
1 parent b0c1132 commit a3c7803
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mxmirror/mxmirror
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ sub convert_to_sourcepath {

if(($jbod, $path) = $string =~ /^([XCMD][\da-f]\d\d\d)(.*?)$/) {
unless(defined $jbodmap->{$jbod}) {
printf STDERR "**ERROR: unknown jbod: $string";
printf STDERR "**ERROR: unknown jbod: $string\n";
return undef
}

Expand Down Expand Up @@ -714,7 +714,7 @@ sub convert_to_destinationpath {

if(($jbod, $path) = $string =~ /^([XCMD][\da-f]\d\d\d)(.*?)$/) {
unless(defined $jbodmap->{$jbod}) {
printf STDERR "**ERROR: unknown jbod: $string";
printf STDERR "**ERROR: unknown jbod: $string\n";
return undef;
}

Expand Down

0 comments on commit a3c7803

Please sign in to comment.