aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/fs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/os/fs.c')
-rw-r--r--src/nvim/os/fs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c
index 5fcae79a67..68da53c476 100644
--- a/src/nvim/os/fs.c
+++ b/src/nvim/os/fs.c
@@ -56,7 +56,6 @@ static const int kLibuvSuccess = 0;
static uv_loop_t fs_loop;
static uv_mutex_t fs_loop_mutex;
-
// Initialize the fs module
void fs_init(void)
{
@@ -77,7 +76,6 @@ void fs_loop_unlock(void)
uv_mutex_unlock(&fs_loop_mutex);
}
-
/// Changes the current directory to `path`.
///
/// @return 0 on success, or negative error code.