From: Johann Lombardi Date: Thu, 14 Jan 2010 14:20:02 +0000 (+0100) Subject: fix tiny nit from previous commit X-Git-Tag: v1_8_2~22 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=25c569bfa155205ae8f2d7003d9f72b971bc5fee;p=fs%2Flustre-release.git fix tiny nit from previous commit --- diff --git a/lustre/utils/mkfs_lustre.c b/lustre/utils/mkfs_lustre.c index fcef47e..2cd9fe9 100644 --- a/lustre/utils/mkfs_lustre.c +++ b/lustre/utils/mkfs_lustre.c @@ -700,7 +700,7 @@ int make_lustre_backfs(struct mkfs_opts *mop) strscat(mkfs_cmd, " ", sizeof(mkfs_cmd)); strscat(mkfs_cmd, dev, sizeof(mkfs_cmd)); if (block_count != 0) { - sprintf(buf, LPU64, block_count); + sprintf(buf, " "LPU64, block_count); strscat(mkfs_cmd, buf, sizeof(mkfs_cmd)); }