diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-09-29 21:29:14 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-09-29 21:29:14 +0000 |
commit | 3c56521b70ee2ee23c0df06e193147736d01b121 (patch) | |
tree | b481d79d8c43188436ec5b1cdd3bcdbb726bedec /qemu-img.c | |
parent | 096b7ea42b5881de142781e86f06a6879cebd373 (diff) |
cloop driver (Johannes Schindelin)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1076 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'qemu-img.c')
-rw-r--r-- | qemu-img.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu-img.c b/qemu-img.c index 5f83622358..196e0287f2 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -374,7 +374,7 @@ static int img_create(int argc, char **argv) ret = bdrv_create(drv, filename, size / 512, base_filename, encrypted); if (ret < 0) { if (ret == -ENOTSUP) { - error("Formatting or formatting option not suppored for file format '%s'", fmt); + error("Formatting or formatting option not supported for file format '%s'", fmt); } else { error("Error while formatting"); } @@ -534,7 +534,7 @@ static int img_convert(int argc, char **argv) ret = bdrv_create(drv, out_filename, total_sectors, NULL, encrypt); if (ret < 0) { if (ret == -ENOTSUP) { - error("Formatting not suppored for file format '%s'", fmt); + error("Formatting not supported for file format '%s'", fmt); } else { error("Error while formatting '%s'", out_filename); } |