From c464e5800961c809c73d4180f8a66885b53c63d7 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 21 Nov 2025 01:37:12 +0100 Subject: meta: Codebase improvements on NeKernel. Signed-off-by: Amlal El Mahrouss --- dev/libDDK/src/ddk_dev.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'dev/libDDK/src/ddk_dev.c') diff --git a/dev/libDDK/src/ddk_dev.c b/dev/libDDK/src/ddk_dev.c index c0396eb5..64ecefb6 100644 --- a/dev/libDDK/src/ddk_dev.c +++ b/dev/libDDK/src/ddk_dev.c @@ -1,10 +1,10 @@ -/* ------------------------------------------- +/* ======================================== Copyright Amlal El Mahrouss. Purpose: DDK Text I/O. -------------------------------------------- */ +======================================== */ #include #include @@ -13,7 +13,8 @@ DDK_EXTERN DDK_DEVICE_PTR kopen_dev(const char* devicePath) { if (nil == devicePath) return nil; - return (DDK_DEVICE_PTR)ke_call_dispatch("dk_open_dev", 1, (void*) devicePath, kstrlen(devicePath)); + return (DDK_DEVICE_PTR) ke_call_dispatch("dk_open_dev", 1, (void*) devicePath, + kstrlen(devicePath)); } /// @brief Close any device. -- cgit v1.2.3