diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:43:58 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:43:58 +0200 |
commit | bc951ca565d137b2d1bd158e5473bd42cf568d10 (patch) | |
tree | d726fbd8f661b52a7c3d549a5f08f98e0443ca0c /Kernel/FileSystem/Custody.cpp | |
parent | 98eeb8f22df509b2a711de0e4a01660b6646f229 (diff) | |
download | serenity-bc951ca565d137b2d1bd158e5473bd42cf568d10.zip |
Kernel: Run clang-format on everything.
Diffstat (limited to 'Kernel/FileSystem/Custody.cpp')
-rw-r--r-- | Kernel/FileSystem/Custody.cpp | 7 |
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; } - |