mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-05 04:55:10 +00:00
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.
This commit is contained in:
@@ -66,13 +66,13 @@ static bool parse_name(StringView name, OpenFile& file)
|
||||
return true;
|
||||
} else {
|
||||
if (!lexer.consume_specific('(')) {
|
||||
dbg() << "parse_name: expected (";
|
||||
dbgln("parse_name: expected (");
|
||||
return false;
|
||||
}
|
||||
|
||||
auto component3 = lexer.consume_until(')');
|
||||
if (lexer.tell_remaining() != 0) {
|
||||
dbg() << "parse_name: expected EOF";
|
||||
dbgln("parse_name: expected EOF");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user