diff options
Diffstat (limited to 'CorebootModulePkg/Library')
-rw-r--r-- | CorebootModulePkg/Library/CbParseLib/CbParseLib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CorebootModulePkg/Library/CbParseLib/CbParseLib.c b/CorebootModulePkg/Library/CbParseLib/CbParseLib.c index d9717f4210..377abf3c67 100644 --- a/CorebootModulePkg/Library/CbParseLib/CbParseLib.c +++ b/CorebootModulePkg/Library/CbParseLib/CbParseLib.c @@ -216,7 +216,8 @@ FindCbMemTable ( *pMemTableSize = Entries[Idx].size;
}
- DEBUG ((EFI_D_INFO, "Find CbMemTable Id 0x%x, base %p, size 0x%x\n", TableId, *pMemTable, *pMemTableSize));
+ DEBUG ((EFI_D_INFO, "Find CbMemTable Id 0x%x, base %p, size 0x%x\n", + TableId, *pMemTable, Entries[Idx].size)); return RETURN_SUCCESS;
}
}
|