From bd3bb3cf5835524f1299074be43d0d0bd5ec63bb Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 9 Oct 2013 03:28:07 +0200 Subject: [PATCH] boot loader vfs.h: small cleanup --- headers/private/kernel/boot/vfs.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/headers/private/kernel/boot/vfs.h b/headers/private/kernel/boot/vfs.h index f00e282686..6cc97f928e 100644 --- a/headers/private/kernel/boot/vfs.h +++ b/headers/private/kernel/boot/vfs.h @@ -109,17 +109,17 @@ public: BootVolume(); ~BootVolume(); - status_t SetTo(Directory* rootDirectory); - void Unset(); + status_t SetTo(Directory* rootDirectory); + void Unset(); - bool IsValid() const + bool IsValid() const { return fRootDirectory != NULL; } - Directory* RootDirectory() const + Directory* RootDirectory() const { return fRootDirectory; } - Directory* SystemDirectory() const + Directory* SystemDirectory() const { return fSystemDirectory; } - bool IsPackaged() const + bool IsPackaged() const { return fPackaged; } private: