summaryrefslogtreecommitdiff
path: root/include/ext4.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ext4.h')
-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