cloop driver (Johannes Schindelin)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1076 c046a42c-6fe2-441c-8c8c-71466251a162
diff --git a/qemu-img.c b/qemu-img.c
index 5f83622..196e028 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -374,7 +374,7 @@
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 @@
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);
}