Use spaces instead of tabs.

svn path=/trunk/; revision=38814
This commit is contained in:
Andrew Greenwood 2009-01-17 14:44:24 +00:00
parent afff2765ab
commit e17583e14d

View file

@ -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