1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:08:12 +00:00

AK: Eradicate calls to warn().

This commit is contained in:
asynts 2020-10-25 17:46:16 +01:00 committed by Andreas Kling
parent a5f5c3fd33
commit 1254cbbd0b
9 changed files with 42 additions and 53 deletions

View file

@ -63,7 +63,7 @@ static String bookmarks_file_path()
int main(int argc, char** argv)
{
if (getuid() == 0) {
warn() << "Refusing to run as root";
warnln("Refusing to run as root");
return 1;
}