summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbranzhu <bran.zhu@outlook.com>2017-07-13 10:48:43 +0000
committerGrzegorz Kostka <kostka.grzegorz@gmail.com>2017-07-13 13:33:02 +0200
commitfb46550c54e6efbcd5ceb7f86d88e89ca9f1cee3 (patch)
treee0c22d4dfa98aedb39b54e073885d3ca6c3e8c67 /include
parent7e9fa5accf413deb040daca7cfd7844edb5cf58b (diff)
Fix a compile issue with big endian config & some small issues fixes
Diffstat (limited to 'include')
-rw-r--r--include/ext4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ext4.h b/include/ext4.h
index 3b88771..3694410 100644
--- a/include/ext4.h
+++ b/include/ext4.h
@@ -227,13 +227,13 @@ int ext4_get_sblock(const char *mount_point, struct ext4_sblock **sb);
* @warning Default model of cache is write trough. It means that when You do:
*
* ext4_fopen(...);
- * ext4_fwrie(...);
+ * ext4_fwrite(...);
* < --- data is flushed to physical drive
*
* When you do:
* ext4_cache_write_back(..., 1);
* ext4_fopen(...);
- * ext4_fwrie(...);
+ * ext4_fwrite(...);
* < --- data is NOT flushed to physical drive
* ext4_cache_write_back(..., 0);
* < --- when write back mode is disabled all