1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 16:15:10 +00:00

LibDebug: Convert a bunch of dbg() to dbgln()

This commit is contained in:
Andreas Kling 2021-01-09 15:07:10 +01:00
parent 08190dd0ce
commit d56f4f635a
5 changed files with 22 additions and 23 deletions

View file

@ -180,7 +180,7 @@ DIE::AttributeValue DIE::get_attribute_value(AttributeDataForm form,
break;
}
default:
dbg() << "Unimplemented AttributeDataForm: " << (u32)form;
dbgln("Unimplemented AttributeDataForm: {}", (u32)form);
ASSERT_NOT_REACHED();
}
return value;