diff options
author | asynts <asynts@gmail.com> | 2020-10-25 17:46:16 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-25 18:52:51 +0100 |
commit | 1254cbbd0bb4f7220534fb7c99074027e4aa00de (patch) | |
tree | 1977b2f2de3737a6183f1a657e8d28c7a0b779c9 /Applications/Browser/main.cpp | |
parent | a5f5c3fd33ebc91e827e0b0ab94d438cc82ffff4 (diff) | |
download | serenity-1254cbbd0bb4f7220534fb7c99074027e4aa00de.zip |
AK: Eradicate calls to warn().
Diffstat (limited to 'Applications/Browser/main.cpp')
-rw-r--r-- | Applications/Browser/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Browser/main.cpp b/Applications/Browser/main.cpp index e96a93fdce..764ab49d85 100644 --- a/Applications/Browser/main.cpp +++ b/Applications/Browser/main.cpp @@ -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; } |