Skip to content

Commit

Permalink
Add newline to two zpool messages
Browse files Browse the repository at this point in the history
Signed-off-by: Seth Troisi <sethtroisi@google.com>
  • Loading branch information
sethtroisi committed Apr 19, 2024
1 parent 454c0b0 commit 02b1941
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/zpool/zpool_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3444,10 +3444,10 @@ do_import(nvlist_t *config, const char *newname, const char *mntopts,
ms_status = zpool_enable_datasets(zhp, mntopts, 0);
if (ms_status == EZFS_SHAREFAILED) {
(void) fprintf(stderr, gettext("Import was "
"successful, but unable to share some datasets"));
"successful, but unable to share some datasets\n"));
} else if (ms_status == EZFS_MOUNTFAILED) {
(void) fprintf(stderr, gettext("Import was "
"successful, but unable to mount some datasets"));
"successful, but unable to mount some datasets\n"));
}
}

Expand Down

0 comments on commit 02b1941

Please sign in to comment.