mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-02 10:59:15 +00:00
refactor(kernel): remove 'foreach' macro
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
@ -27,7 +27,7 @@ using namespace vfs;
|
||||
void cmd_lsacpi(const char *)
|
||||
{
|
||||
ACPI::ACPI *acpi = (ACPI::ACPI *)PowerManager->GetACPI();
|
||||
foreach (auto Table in acpi->Tables)
|
||||
for (auto Table : acpi->Tables)
|
||||
{
|
||||
printf("%#lx: %.4s [%.6s:%.8s] %d bytes\n",
|
||||
(uintptr_t)Table.second,
|
||||
|
Reference in New Issue
Block a user