summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2014-12-19 11:57:52 -0800
committerBrian Behlendorf <[email protected]>2014-12-19 12:00:14 -0800
commit5c7afad448325b5761601f574fc937476d3a77d1 (patch)
treeda810f8c3b5aa1c3d2b9b8e63e719bc64b49d78b /cmd
parent9063f65476b7b7d78ccf096fec890b8727117e2a (diff)
Fix cstyle issue from c66989b
Commit c66989b accidentally introduced a cstyle issue which went unnoticed. This tiny patch corrects that oversight. Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/zpool/zpool_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c
index 7eb8ba8da..db5805bcf 100644
--- a/cmd/zpool/zpool_main.c
+++ b/cmd/zpool/zpool_main.c
@@ -4685,8 +4685,8 @@ upgrade_version(zpool_handle_t *zhp, uint64_t version)
return (ret);
if (unsupp_fs) {
- (void) fprintf(stderr, gettext("Upgrade not performed due to %d "
- "unsupported filesystems (max v%d).\n"),
+ (void) fprintf(stderr, gettext("Upgrade not performed due "
+ "to %d unsupported filesystems (max v%d).\n"),
unsupp_fs, (int) ZPL_VERSION);
return (1);
}