about summary refs log tree commit diff stats
path: root/kernel.soso/null.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel.soso/null.c')
-rw-r--r--kernel.soso/null.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel.soso/null.c b/kernel.soso/null.c
index adfb28df..aef2861c 100644
--- a/kernel.soso/null.c
+++ b/kernel.soso/null.c
@@ -5,8 +5,7 @@
 
 static BOOL null_open(File *file, uint32 flags);
 
-void initializeNull()
-{
+void initializeNull() {
     Device device;
     memset((uint8*)&device, 0, sizeof(Device));
     strcpy(device.name, "null");
@@ -16,7 +15,6 @@ void initializeNull()
     registerDevice(&device);
 }
 
-static BOOL null_open(File *file, uint32 flags)
-{
+static BOOL null_open(File *file, uint32 flags) {
     return TRUE;
 }