qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 2/2] qemu-io: Fix if scoping bug


From: Devin Nakamura
Subject: [Qemu-devel] [PATCH 2/2] qemu-io: Fix if scoping bug
Date: Fri, 10 Jun 2011 23:29:46 -0400

Fix a bug caused by lack of braces in if statement

Signed-off-by: Devin Nakamura <address@hidden>
---
 qemu-io.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/qemu-io.c b/qemu-io.c
index 53adb76..1c4f684 100644
--- a/qemu-io.c
+++ b/qemu-io.c
@@ -433,12 +433,12 @@ static int read_f(int argc, char **argv)
         return 0;
     }

-    if (!pflag)
+    if (!pflag){
         if (offset & 0x1ff) {
             printf("offset %" PRId64 " is not sector aligned\n",
                    offset);
             return 0;
-
+        }
         if (count & 0x1ff) {
             printf("count %d is not sector aligned\n",
                    count);
-- 
1.7.6.rc1



reply via email to

[Prev in Thread] Current Thread [Next in Thread]