summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/Custody.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-07 11:43:58 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-07 11:43:58 +0200
commitbc951ca565d137b2d1bd158e5473bd42cf568d10 (patch)
treed726fbd8f661b52a7c3d549a5f08f98e0443ca0c /Kernel/FileSystem/Custody.cpp
parent98eeb8f22df509b2a711de0e4a01660b6646f229 (diff)
downloadserenity-bc951ca565d137b2d1bd158e5473bd42cf568d10.zip
Kernel: Run clang-format on everything.
Diffstat (limited to 'Kernel/FileSystem/Custody.cpp')
-rw-r--r--Kernel/FileSystem/Custody.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/Kernel/FileSystem/Custody.cpp b/Kernel/FileSystem/Custody.cpp
index f70d1a2719..769d4c0de8 100644
--- a/Kernel/FileSystem/Custody.cpp
+++ b/Kernel/FileSystem/Custody.cpp
@@ -31,9 +31,9 @@ Retained<Custody> Custody::get_or_create(Custody* parent, const String& name, In
if (RetainPtr<Custody> cached_custody = get_if_cached(parent, name)) {
if (&cached_custody->inode() != &inode) {
dbgprintf("WTF! cached custody for name '%s' has inode=%s, new inode=%s\n",
- name.characters(),
- cached_custody->inode().identifier().to_string().characters(),
- inode.identifier().to_string().characters());
+ name.characters(),
+ cached_custody->inode().identifier().to_string().characters(),
+ inode.identifier().to_string().characters());
}
ASSERT(&cached_custody->inode() == &inode);
return *cached_custody;
@@ -83,4 +83,3 @@ void Custody::did_rename(Badge<VFS>, const String& name)
{
m_name = name;
}
-