LibWeb: Fix build after GEMINI_DEBUG oopsie

This commit is contained in:
Andreas Kling 2020-10-06 17:48:42 +02:00
parent 3dbd5c98da
commit c6c0a9abcb
Notes: sideshowbarker 2024-07-19 02:00:26 +09:00

View file

@ -121,7 +121,7 @@ static RefPtr<DOM::Document> create_gemini_document(const ByteBuffer& data, cons
auto gemini_document = Gemini::Document::parse(gemini_data, url);
String html_data = gemini_document->render_to_html();
#if GEMINI_DEBUG
#ifdef GEMINI_DEBUG
dbgln("Gemini data:\n\"\"\"{}\"\"\"", gemini_data);
dbgln("Converted to HTML:\n\"\"\"{}\"\"\"", html_data);
#endif