summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-12-21 02:10:45 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-12-21 02:10:45 +0100
commitec1c487dcd7de331d17d9c9ccc21dfbfa00dd4c8 (patch)
tree797d0ec90846ece3c658d55f1507585c85d0b91f /Userland
parent89040cdc99d56e0a1a80b972db18d231c155ace0 (diff)
downloadserenity-ec1c487dcd7de331d17d9c9ccc21dfbfa00dd4c8.zip
Yet another pass of style fixes.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/kill.cpp2
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;
}