summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lwext4/ext4.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lwext4/ext4.c b/lwext4/ext4.c
index 203d7d4..2857fc6 100644
--- a/lwext4/ext4.c
+++ b/lwext4/ext4.c
@@ -555,7 +555,7 @@ Finish:
return r;
}
-int ext4_trans_start(struct ext4_mountpoint *mp)
+static int ext4_trans_start(struct ext4_mountpoint *mp)
{
int r = EOK;
if (mp->fs.jbd_journal && !mp->fs.curr_trans) {
@@ -572,7 +572,7 @@ Finish:
return r;
}
-int ext4_trans_stop(struct ext4_mountpoint *mp)
+static int ext4_trans_stop(struct ext4_mountpoint *mp)
{
int r = EOK;
if (mp->fs.jbd_journal && mp->fs.curr_trans) {
@@ -584,7 +584,7 @@ int ext4_trans_stop(struct ext4_mountpoint *mp)
return r;
}
-void ext4_trans_abort(struct ext4_mountpoint *mp)
+static void ext4_trans_abort(struct ext4_mountpoint *mp)
{
if (mp->fs.jbd_journal && mp->fs.curr_trans) {
struct jbd_journal *journal = mp->fs.jbd_journal;