From 5a03a88a4e1a71c794569015e0ec94e93d3a7350 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Wed, 20 Jun 2012 22:57:25 +0800 Subject: [PATCH] Kernel - Moved node type to the beginning of tVFS_Node --- KernelLand/Kernel/include/vfs.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/KernelLand/Kernel/include/vfs.h b/KernelLand/Kernel/include/vfs.h index b746d0e7..f2bf3212 100644 --- a/KernelLand/Kernel/include/vfs.h +++ b/KernelLand/Kernel/include/vfs.h @@ -90,6 +90,11 @@ typedef struct sVFS_NodeType tVFS_NodeType; */ typedef struct sVFS_Node { + /** + * \brief Functions associated with the node + */ + tVFS_NodeType *Type; + /** * \name Identifiers * \brief Fields used by the driver to identify what data this node @@ -178,11 +183,6 @@ typedef struct sVFS_Node /** * \} */ - - /** - * \brief Functions associated with the node - */ - tVFS_NodeType *Type; } tVFS_Node; /** -- 2.20.1