summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/KernelKit/LoaderInterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/KernelKit/LoaderInterface.h')
-rw-r--r--dev/Kernel/KernelKit/LoaderInterface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/Kernel/KernelKit/LoaderInterface.h b/dev/Kernel/KernelKit/LoaderInterface.h
index 29a1b928..c2c9a595 100644
--- a/dev/Kernel/KernelKit/LoaderInterface.h
+++ b/dev/Kernel/KernelKit/LoaderInterface.h
@@ -25,9 +25,9 @@ namespace Kernel
public:
virtual _Output ErrorOr<VoidPtr> GetBlob() = 0;
- virtual _Output const Char* AsString() = 0;
- virtual _Output const Char* MIME() = 0;
- virtual _Output const Char* Path() = 0;
+ virtual _Output const Char* AsString() = 0;
+ virtual _Output const Char* MIME() = 0;
+ virtual _Output const Char* Path() = 0;
virtual _Output ErrorOr<VoidPtr> FindStart() = 0;
virtual _Output VoidPtr FindSymbol(_Input const Char* name, _Input Int32 kind) = 0;
};