Compare commits

..

No commits in common. "98134957e7eeba1dc3380213a9e6d5cf714da042" and "8de86dd647e16bb90397fc0b65a17a0eb5fdbf4c" have entirely different histories.

2 changed files with 1 additions and 15 deletions

View File

@ -77,12 +77,6 @@ struct Acpi
{
parse_apic_table(address);
}
Klog.writefln("Found ACPI table %08x (%c%c%c%c)",
signature,
signature & 0xFFu,
(signature >> 8u) & 0xFFu,
(signature >> 16u) & 0xFFu,
(signature >> 24u) & 0xFFu);
}
}

View File

@ -26,15 +26,7 @@ size_t writef(string s, va_list args, ch_out_fn ch_out)
{
if (escape)
{
if (c == 'c')
{
ulong ch;
va_arg(args, ch);
ch_out(cast(ubyte)ch);
length_written++;
escape = false;
}
else if (c == 'x')
if (c == 'x')
{
ulong v;
va_arg(args, v);