Re-add prefix to private function.
diff --git a/lib/zip_io_util.c b/lib/zip_io_util.c
index 3f4970c..08d498e 100644
--- a/lib/zip_io_util.c
+++ b/lib/zip_io_util.c
@@ -85,7 +85,7 @@
}
if ((n = zip_source_read(src, b, length)) < 0) {
- zip_error_set_from_source(error, src);
+ _zip_error_set_from_source(error, src);
return -1;
}
@@ -199,7 +199,7 @@
zip_int64_t n;
if ((n = zip_source_write(za->src, data, length)) < 0) {
- zip_error_set_from_source(&za->error, za->src);
+ _zip_error_set_from_source(&za->error, za->src);
return -1;
}
if ((zip_uint64_t)n != length) {