summaryrefslogtreecommitdiff
path: root/Source/Kernel/VFS/FileNode.class.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Kernel/VFS/FileNode.class.h')
-rw-r--r--Source/Kernel/VFS/FileNode.class.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Kernel/VFS/FileNode.class.h b/Source/Kernel/VFS/FileNode.class.h
index 7ab617f..e99ef5e 100644
--- a/Source/Kernel/VFS/FileNode.class.h
+++ b/Source/Kernel/VFS/FileNode.class.h
@@ -19,7 +19,7 @@ class FileNode : public FSNode {
u8int type() { return NT_FILE; }
bool removable() { return true; }
bool used() { return (m_readers != 0 or m_writers != 0); }
- bool writable() { return m_fs->isWritable(); }
+ bool fsWritable() { return m_fs->isWritable(); }
u32int read(u64int position, u32int max_length, u8int *data) {
return m_fs->read(this, position, max_length, data);