diff options
author | Anthony Liguori | 2010-09-08 21:26:57 +0200 |
---|---|---|
committer | Anthony Liguori | 2010-09-08 21:26:57 +0200 |
commit | aab2e8f79ad253c760787ff3ce4d64967fed0003 (patch) | |
tree | bc837d155b4d558b71ad196c561f9e71c10136d0 /qemu-io.c | |
parent | Merge remote branch 'mst/for_anthony' into staging (diff) | |
parent | qcow2: Remove unnecessary flush after L2 write (diff) | |
download | qemu-aab2e8f79ad253c760787ff3ce4d64967fed0003.tar.gz qemu-aab2e8f79ad253c760787ff3ce4d64967fed0003.tar.xz qemu-aab2e8f79ad253c760787ff3ce4d64967fed0003.zip |
Merge remote branch 'kwolf/for-anthony' into staging
Diffstat (limited to 'qemu-io.c')
-rw-r--r-- | qemu-io.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -1427,11 +1427,8 @@ alloc_f(int argc, char **argv) cvtstr(offset, s1, sizeof(s1)); - if (nb_sectors == 1) - printf("sector allocated at offset %s\n", s1); - else - printf("%d/%d sectors allocated at offset %s\n", - sum_alloc, nb_sectors, s1); + printf("%d/%d sectors allocated at offset %s\n", + sum_alloc, nb_sectors, s1); return 0; } |