about summary refs log tree commit diff stats
path: root/kernel.soso/alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel.soso/alloc.h')
-rw-r--r--kernel.soso/alloc.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel.soso/alloc.h b/kernel.soso/alloc.h
index 7594050d..e4985aa5 100644
--- a/kernel.soso/alloc.h
+++ b/kernel.soso/alloc.h
@@ -14,8 +14,7 @@ void *sbrk(Process* process, int nBytes);
 
 uint32 getKernelHeapUsed();
 
-struct MallocHeader
-{
+struct MallocHeader {
     unsigned long size:31;
     unsigned long used:1;
 } __attribute__ ((packed));