]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
Fix typo
authorRay Strode <rstrode@halfline-kentsfield.usersys.redhat.com>
Wed, 10 Sep 2008 17:09:03 +0000 (13:09 -0400)
committerRay Strode <rstrode@halfline-kentsfield.usersys.redhat.com>
Wed, 10 Sep 2008 17:09:03 +0000 (13:09 -0400)
forgot a state->

src/main.c

index ca5f21ccea83c70dfc5d96e66a8cd5a1e87f1368..35ff024c4b2c72178786c2e51f26aa6846f24580 100644 (file)
@@ -505,7 +505,7 @@ check_for_serial_console (state_t *state)
       if (end != NULL)
         {
           *end = '\0';
-          remaining_command_line += end - console;
+          remaining_command_line += end - state->console;
         }
     }
 }