1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:47:35 +00:00

LibC: Convert dbgprintf() => dbgln()

This commit is contained in:
Andreas Kling 2021-02-17 15:39:32 +01:00
parent 5a595ef134
commit dffab4e034
4 changed files with 13 additions and 24 deletions

View file

@ -673,7 +673,7 @@ void sysbeep()
int fsync([[maybe_unused]] int fd)
{
dbgprintf("FIXME: Implement fsync()\n");
dbgln("FIXME: Implement fsync()");
return 0;
}