]> git.proxmox.com Git - pve-qemu-kvm.git/commitdiff
fix typo
authorDietmar Maurer <dietmar@proxmox.com>
Tue, 31 Mar 2015 04:07:29 +0000 (06:07 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 31 Mar 2015 04:37:16 +0000 (06:37 +0200)
debian/patches/0007-vma-add-verify-command.patch
debian/patches/backup-add-vma-verify-command.patch
debian/patches/backup-vma-allow-empty-backups.patch

index 2feba4f4b4e69d0ad7d0e05114b1e6778b91a736..a6aff8577f377d03aaba2f5d04ca675103d499c0 100644 (file)
@@ -196,7 +196,7 @@ index bc36cba..a740f04 100644
 +               vmar->zero_cluster_data,
 +               (double)(100.0*vmar->zero_cluster_data)/
 +               (vmar->clusters_read*VMA_CLUSTER_SIZE));
-+        printf("space reduction due to 4K zero bocks %.3g%%\n",
++        printf("space reduction due to 4K zero blocks %.3g%%\n",
 +               (double)(100.0*vmar->partial_zero_cluster_data) /
 +               (vmar->clusters_read*VMA_CLUSTER_SIZE-vmar->zero_cluster_data));
 +    }
index 1f042813a84c48578ffdb047726004968210c601..093b3525b0bdb69dea05b81d1aca208a698ec827 100644 (file)
@@ -199,7 +199,7 @@ Index: new/vma-reader.c
 +
 +        int64_t datasize = vmar->clusters_read*VMA_CLUSTER_SIZE-vmar->zero_cluster_data;
 +        if (datasize) { // this does not make sense for empty files
-+            printf("space reduction due to 4K zero bocks %.3g%%\n",
++            printf("space reduction due to 4K zero blocks %.3g%%\n",
 +                   (double)(100.0*vmar->partial_zero_cluster_data) / datasize);
 +        }
 +    }
index ecfc2e2f911ddcc8a8ab94b2e65bd0e1e6ea4c23..ea71d620303796e8893821c318b03acc91834e95 100644 (file)
@@ -31,7 +31,7 @@ Index: new/vma-reader.c
 -
 -        int64_t datasize = vmar->clusters_read*VMA_CLUSTER_SIZE-vmar->zero_cluster_data;
 -        if (datasize) { // this does not make sense for empty files
--            printf("space reduction due to 4K zero bocks %.3g%%\n",
+-            printf("space reduction due to 4K zero blocks %.3g%%\n",
 -                   (double)(100.0*vmar->partial_zero_cluster_data) / datasize);
 +        if (vmar->clusters_read) {
 +            printf("total bytes read %zd, sparse bytes %zd (%.3g%%)\n",
@@ -42,7 +42,7 @@ Index: new/vma-reader.c
 +
 +            int64_t datasize = vmar->clusters_read*VMA_CLUSTER_SIZE-vmar->zero_cluster_data;
 +            if (datasize) { // this does not make sense for empty files
-+                printf("space reduction due to 4K zero bocks %.3g%%\n",
++                printf("space reduction due to 4K zero blocks %.3g%%\n",
 +                       (double)(100.0*vmar->partial_zero_cluster_data) / datasize);
 +            }
 +        } else {