OSDN Git Service

Fix indentation
authorStefan Weil <weil@mail.berlios.de>
Sat, 19 Sep 2009 09:39:29 +0000 (11:39 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Sat, 19 Sep 2009 16:43:44 +0000 (18:43 +0200)
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
cmd.c

diff --git a/cmd.c b/cmd.c
index d86ba7c..3c89a05 100644 (file)
--- a/cmd.c
+++ b/cmd.c
@@ -288,9 +288,9 @@ static char *qemu_strsep(char **input, const char *delim)
 {
     char *result = *input;
     if (result != NULL) {
-    char *p = result;
-    for (p = result; *p != '\0'; p++) {
-        if (strchr(delim, *p)) {
+        char *p = result;
+        for (p = result; *p != '\0'; p++) {
+            if (strchr(delim, *p)) {
                 break;
             }
         }