summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--dev/hpfs/src/hpfs_main.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/hpfs/src/hpfs_main.cxx b/dev/hpfs/src/hpfs_main.cxx
index 187fb3ce..a72573cb 100644
--- a/dev/hpfs/src/hpfs_main.cxx
+++ b/dev/hpfs/src/hpfs_main.cxx
@@ -8,9 +8,9 @@
------------------------------------------- */
#include <hpfs/hpfs_specs.hxx>
-#include <ddk/KernelStd.h>
+#include <ddk/ddk.h>
-static DDK_OBJECT_MANIFEST* cIFSObject = nullptr;
+static DDK_OBJECT_MANIFEST* kIfsObject = nullptr;
/** @brief HPFS IFS main. */
int32_t ModuleMain(void)
@@ -18,7 +18,7 @@ int32_t ModuleMain(void)
auto ifs_handle = KernelGetObject(0, "IFS_OBJECT");
// TODO: Register this IFS with necessary I/O functions...
- cIFSObject = ifs_handle;
+ kIfsObject = ifs_handle;
return 0;
}