summaryrefslogtreecommitdiff
path: root/Kernel/ProcFileSystem.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-12-03 00:39:25 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-12-03 00:39:25 +0100
commitf6e27c2abe9da2ed1159cfc30618afc66bfbab79 (patch)
tree511a2b15828a5b431bc54a6c95d0986453d48753 /Kernel/ProcFileSystem.h
parentd824442e3e4961e6df18aeb625f645a98760ac2a (diff)
downloadserenity-f6e27c2abe9da2ed1159cfc30618afc66bfbab79.zip
More coding style changes.
Diffstat (limited to 'Kernel/ProcFileSystem.h')
-rw-r--r--Kernel/ProcFileSystem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/ProcFileSystem.h b/Kernel/ProcFileSystem.h
index f9169f9e3e..5f6aa061d1 100644
--- a/Kernel/ProcFileSystem.h
+++ b/Kernel/ProcFileSystem.h
@@ -15,8 +15,8 @@ public:
virtual bool initialize() override;
virtual const char* class_name() const override;
- void addProcess(Process&);
- void removeProcess(Process&);
+ void add_process(Process&);
+ void remove_process(Process&);
private:
ProcFS();