summaryrefslogtreecommitdiff
path: root/src/kernel
diff options
context:
space:
mode:
authorAlex AUVOLAT <alexis211@gmail.com>2013-05-20 18:11:26 +0200
committerAlex AUVOLAT <alexis211@gmail.com>2013-05-20 18:11:26 +0200
commiteae9997d3c2dbaef53022ddabe61c1800a619499 (patch)
treef6d3cd74a5d27a0cb027341da9081a3e58688c89 /src/kernel
parent3e51eabb1cb8ca35fa350c68fc4fddedc85daa84 (diff)
downloadTCE-eae9997d3c2dbaef53022ddabe61c1800a619499.tar.gz
TCE-eae9997d3c2dbaef53022ddabe61c1800a619499.zip
Stupidity corrected.
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/vfs/node.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/vfs/node.h b/src/kernel/vfs/node.h
index c3b1585..2ebf93b 100644
--- a/src/kernel/vfs/node.h
+++ b/src/kernel/vfs/node.h
@@ -12,10 +12,10 @@ class vt;
class node {
public:
node* parent;
- int type, dev_type;
- int mode, uid, gid;
+ uint32_t type, dev_type;
+ uint32_t mode, uid, gid;
- node(node* p, int t) : parent(p), type(t) {}
+ node(node* p, uint32_t t) : parent(p), type(t) {}
virtual ~node() {}
virtual int open(process *proc, int mode);