diff --git a/reactos/boot/freeldr/freeldr/reactos/reactos.c b/reactos/boot/freeldr/freeldr/reactos/reactos.c index d7ea42ba84e..0ebe32d6fb7 100644 --- a/reactos/boot/freeldr/freeldr/reactos/reactos.c +++ b/reactos/boot/freeldr/freeldr/reactos/reactos.c @@ -707,12 +707,12 @@ LoadAndBootReactOS(PCSTR OperatingSystemName) */ if (!_strnicmp(SystemPath, "LiveCD", strlen("LiveCD"))) { - /* Use everything following the "LiveCD" string as the path */ + /* Use everything following the "LiveCD" string as the path */ strcpy(LivePath, SystemPath + strlen("LiveCD")); - /* Normalize */ - MachDiskGetBootPath(SystemPath, sizeof(SystemPath)); - strcat(SystemPath, LivePath); - strcat(strcpy(reactos_kernel_cmdline, SystemPath), + /* Normalize */ + MachDiskGetBootPath(SystemPath, sizeof(SystemPath)); + strcat(SystemPath, LivePath); + strcat(strcpy(reactos_kernel_cmdline, SystemPath), " /MININT"); } else