diff options
author | Alexis211 <alexis211@gmail.com> | 2009-11-28 14:01:27 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-11-28 14:01:27 +0100 |
commit | a913d4c2cb4daf10c0eac4d548fccb26b2a9f099 (patch) | |
tree | 6573d49f1cf4a88e8af4a82ee4bf566925233b67 /Source/Kernel/VFS/Partition.class.cpp | |
parent | 4d0939e2853ffd9d49b83524923351f9776866d7 (diff) | |
download | Melon-a913d4c2cb4daf10c0eac4d548fccb26b2a9f099.tar.gz Melon-a913d4c2cb4daf10c0eac4d548fccb26b2a9f099.zip |
Fixed some stuff
Diffstat (limited to 'Source/Kernel/VFS/Partition.class.cpp')
-rw-r--r-- | Source/Kernel/VFS/Partition.class.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Kernel/VFS/Partition.class.cpp b/Source/Kernel/VFS/Partition.class.cpp index 1476b14..8d7de9b 100644 --- a/Source/Kernel/VFS/Partition.class.cpp +++ b/Source/Kernel/VFS/Partition.class.cpp @@ -67,4 +67,4 @@ BlockDevice* Partition::getDevice() { return m_device; } u64int Partition::getStartBlock() { return m_startblock; } u64int Partition::getBlockCount() { return m_blockcount; } u8int Partition::getPartNumber() { return m_partnumber; } -u32int Partition::getBlockSize() { return m_device->blockSize(); } +u32int Partition::blockSize() { return m_device->blockSize(); } |