Fix a bug caused by lack of braces in if statement

Signed-off-by: Devin Nakamura <devin...@gmail.com>
---
 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