From 144ab97968b7efd2eacfb281e4d152bcad859671 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 17 Jan 2026 17:07:39 +0100 Subject: feat: kernel: refactor devicemgr's devices path, sda becomes sd{}{}. Signed-off-by: Amlal El Mahrouss --- src/kernel/KernelKit/DeviceMgr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kernel/KernelKit/DeviceMgr.h') diff --git a/src/kernel/KernelKit/DeviceMgr.h b/src/kernel/KernelKit/DeviceMgr.h index bea5908c..958c882c 100644 --- a/src/kernel/KernelKit/DeviceMgr.h +++ b/src/kernel/KernelKit/DeviceMgr.h @@ -56,7 +56,7 @@ class IDevice { return *this; } - virtual const char* Name() const { return "/devices/null"; } + virtual const char* Name() const { return kDeviceMgrRootDirPath "null"; } operator bool() { return fOut && fIn; } -- cgit v1.2.3