diff options
Diffstat (limited to 'Libraries/LibC/stdio.cpp')
-rw-r--r-- | Libraries/LibC/stdio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibC/stdio.cpp b/Libraries/LibC/stdio.cpp index a8a0cfc022..99d6f15a1a 100644 --- a/Libraries/LibC/stdio.cpp +++ b/Libraries/LibC/stdio.cpp @@ -624,7 +624,7 @@ int feof(FILE* stream) int fflush(FILE* stream) { if (!stream) { - dbg() << "FIXME: fflush(nullptr) should flush all open streams"; + dbgln("FIXME: fflush(nullptr) should flush all open streams"); return 0; } return stream->flush() ? 0 : EOF; |