summaryrefslogtreecommitdiffstats
path: root/libsparse/output_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'libsparse/output_file.c')
-rw-r--r--libsparse/output_file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libsparse/output_file.c b/libsparse/output_file.c
index dc56149e7..b5ae4191f 100644
--- a/libsparse/output_file.c
+++ b/libsparse/output_file.c
@@ -541,7 +541,7 @@ static struct sparse_file_ops normal_file_ops = {
.write_end_chunk = write_normal_end_chunk,
};
-void close_output_file(struct output_file *out)
+void output_file_close(struct output_file *out)
{
int ret;
@@ -638,7 +638,7 @@ static struct output_file *output_file_new_normal(void)
return &outn->out;
}
-struct output_file *open_output_callback(int (*write)(void *, const void *, int),
+struct output_file *output_file_open_callback(int (*write)(void *, const void *, int),
void *priv, unsigned int block_size, int64_t len, int gz, int sparse,
int chunks, int crc)
{
@@ -664,7 +664,7 @@ struct output_file *open_output_callback(int (*write)(void *, const void *, int)
return &outc->out;
}
-struct output_file *open_output_fd(int fd, unsigned int block_size, int64_t len,
+struct output_file *output_file_open_fd(int fd, unsigned int block_size, int64_t len,
int gz, int sparse, int chunks, int crc)
{
int ret;