diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-12-21 02:10:45 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-12-21 02:10:45 +0100 |
commit | ec1c487dcd7de331d17d9c9ccc21dfbfa00dd4c8 (patch) | |
tree | 797d0ec90846ece3c658d55f1507585c85d0b91f /Userland | |
parent | 89040cdc99d56e0a1a80b972db18d231c155ace0 (diff) | |
download | serenity-ec1c487dcd7de331d17d9c9ccc21dfbfa00dd4c8.zip |
Yet another pass of style fixes.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/kill.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/kill.cpp b/Userland/kill.cpp index 5708c7a8d0..96d2cd8efc 100644 --- a/Userland/kill.cpp +++ b/Userland/kill.cpp @@ -6,7 +6,7 @@ static unsigned parseUInt(const String& str, bool& ok) { - if (str.isEmpty()) { + if (str.is_empty()) { ok = false; return 0; } |