summaryrefslogtreecommitdiffstats
path: root/modules/zip/zip_packer.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/zip/zip_packer.h')
-rw-r--r--modules/zip/zip_packer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/zip/zip_packer.h b/modules/zip/zip_packer.h
index 142d0fddbf..e194f5ebbe 100644
--- a/modules/zip/zip_packer.h
+++ b/modules/zip/zip_packer.h
@@ -52,11 +52,11 @@ public:
APPEND_ADDINZIP = 2,
};
- Error open(String p_path, ZipAppend p_append);
+ Error open(const String &p_path, ZipAppend p_append);
Error close();
- Error start_file(String p_path);
- Error write_file(Vector<uint8_t> p_data);
+ Error start_file(const String &p_path);
+ Error write_file(const Vector<uint8_t> &p_data);
Error close_file();
ZIPPacker();