diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-12-03 00:39:25 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-12-03 00:39:25 +0100 |
commit | f6e27c2abe9da2ed1159cfc30618afc66bfbab79 (patch) | |
tree | 511a2b15828a5b431bc54a6c95d0986453d48753 /Kernel/ProcFileSystem.h | |
parent | d824442e3e4961e6df18aeb625f645a98760ac2a (diff) | |
download | serenity-f6e27c2abe9da2ed1159cfc30618afc66bfbab79.zip |
More coding style changes.
Diffstat (limited to 'Kernel/ProcFileSystem.h')
-rw-r--r-- | Kernel/ProcFileSystem.h | 4 |
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(); |