- Remove duplicated code in "rtl" and use libstring and librtl instead (their code...
[reactos.git] / reactos / boot / freeldr / freeldr / arch / i386 / i386disk.c
index d2bc5de..c1c0c5a 100644 (file)
@@ -451,7 +451,7 @@ i386DiskGetBootPath(char *BootPath, unsigned Size)
        static char Path[] = "multi(0)disk(0)";
        char Device[4];
 
-       itoa(i386BootDrive, Device, 10);
+       _itoa(i386BootDrive, Device, 10);
        if (Size <= sizeof(Path) + 6 + strlen(Device))
        {
                return FALSE;
@@ -491,7 +491,7 @@ i386DiskNormalizeSystemPath(char *SystemPath, unsigned Size)
        }
 
        p = SystemPath;
-       while ('\0' != *p && 0 != strnicmp(p, "partition(", 10)) {
+       while ('\0' != *p && 0 != _strnicmp(p, "partition(", 10)) {
                p++;
        }
        p = strchr(p, ')');