Add missing static keyword for sparsebundle_read_buf_prepare_file

Fixes warning about no previous prototype for function [-Wmissing-prototypes]
This commit is contained in:
Tor Arne Vestbø
2016-06-17 18:56:15 +02:00
committed by Tor Arne Vestbø
parent c8ac56d594
commit d3c85f2ab8

View File

@@ -245,7 +245,7 @@ static int sparsebundle_read(const char *path, char *buffer, size_t length, off_
}
#if FUSE_SUPPORTS_ZERO_COPY
int sparsebundle_read_buf_prepare_file(const char *path)
static int sparsebundle_read_buf_prepare_file(const char *path)
{
sparsebundle_t *sparsebundle = sparsebundle_current();