change string to char

Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
This commit is contained in:
Sergey Isakov 2019-12-20 15:35:29 +03:00
parent ad0eb1988d
commit 553c3c338d
2 changed files with 6 additions and 6 deletions

View File

@ -1376,7 +1376,7 @@ UINT32 CorrectOuters (UINT8 *dsdt, UINT32 len, UINT32 adr, INT32 shift)
{ {
INT32 i, k; INT32 i, k;
INT32 j; INT32 j;
UINT32 size = 0; INT32 size = 0;
INT32 offset = 0; INT32 offset = 0;
// UINT32 SBSIZE = 0, SBADR = 0; // UINT32 SBSIZE = 0, SBADR = 0;
BOOLEAN SBFound = FALSE; BOOLEAN SBFound = FALSE;
@ -1402,7 +1402,7 @@ UINT32 CorrectOuters (UINT8 *dsdt, UINT32 len, UINT32 adr, INT32 shift)
while (j > 0x20) { while (j > 0x20) {
if (((dsdt[j - 1] == 0x5B) && (dsdt[j] == 0x81)) || if (((dsdt[j - 1] == 0x5B) && (dsdt[j] == 0x81)) ||
((dsdt[j - 1] == 0x5B) && (dsdt[j] == 0x86))) { //we found a Field() or IndexField before the 0x10 will check what is it ((dsdt[j - 1] == 0x5B) && (dsdt[j] == 0x86))) { //we found a Field() or IndexField before the 0x10 will check what is it
size = get_size(dsdt, j + 1); // if it is not a size then size = 0 size = (INT32)get_size(dsdt, j + 1); // if it is not a size then size = 0
if (j + size >= i) { if (j + size >= i) {
// it is inside a Field, skip it // it is inside a Field, skip it
SBFound = FALSE; SBFound = FALSE;
@ -1416,9 +1416,9 @@ UINT32 CorrectOuters (UINT8 *dsdt, UINT32 len, UINT32 adr, INT32 shift)
} }
} }
if ( k != 0) { if ( k != 0) {
size = get_size(dsdt, k); size = (INT32)get_size(dsdt, k);
if (size) { if (size) {
if ((k + size) > adr+4) { //Yes - it is outer if ((k + size) > (INT32)adr+4) { //Yes - it is outer
// DBG("found outer device begin=%x end=%x\n", k, k+size); // DBG("found outer device begin=%x end=%x\n", k, k+size);
offset = write_size(k, dsdt, len, shift); //size corrected to sizeoffset at address j offset = write_size(k, dsdt, len, shift); //size corrected to sizeoffset at address j
shift += offset; shift += offset;

View File

@ -4216,7 +4216,7 @@ VOID MainMenuStyle(IN REFIT_MENU_SCREEN *Screen, IN SCROLL_STATE *State, IN UINT
case MENU_FUNCTION_PAINT_ALL: case MENU_FUNCTION_PAINT_ALL:
// Display Clover boot volume // Display Clover boot volume
if (SelfVolume->VolName[0] != L"#") { if (SelfVolume->VolName[0] != L'#') {
CHAR16 *line = PoolPrint(L"Clover booted from %s", SelfVolume->VolName); CHAR16 *line = PoolPrint(L"Clover booted from %s", SelfVolume->VolName);
DrawTextXY(line, (INTN)(100 * GlobalConfig.Scale), (INTN)(50 * GlobalConfig.Scale), X_IS_LEFT); DrawTextXY(line, (INTN)(100 * GlobalConfig.Scale), (INTN)(50 * GlobalConfig.Scale), X_IS_LEFT);
FreePool(line); FreePool(line);