VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common/libzip/zip_file_add.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/libzip/zip_file_add.c')
-rw-r--r--src/Common/libzip/zip_file_add.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/Common/libzip/zip_file_add.c b/src/Common/libzip/zip_file_add.c
index 9944c0f1..ec8ef063 100644
--- a/src/Common/libzip/zip_file_add.c
+++ b/src/Common/libzip/zip_file_add.c
@@ -19,3 +19,3 @@
written permission.
-
+
THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
@@ -38,5 +38,5 @@
NOTE: Return type is signed so we can return -1 on error.
- The index can not be larger than ZIP_INT64_MAX since the size
- of the central directory cannot be larger than
- ZIP_UINT64_MAX, and each entry is larger than 2 bytes.
+ The index can not be larger than ZIP_INT64_MAX since the size
+ of the central directory cannot be larger than
+ ZIP_UINT64_MAX, and each entry is larger than 2 bytes.
*/
@@ -44,4 +44,3 @@
ZIP_EXTERN zip_int64_t
-zip_file_add(zip_t *za, const char *name, zip_source_t *source, zip_flags_t flags)
-{
+zip_file_add(zip_t *za, const char *name, zip_source_t *source, zip_flags_t flags) {
if (name == NULL || source == NULL) {
@@ -50,3 +49,3 @@ zip_file_add(zip_t *za, const char *name, zip_source_t *source, zip_flags_t flag
}
-
+
return _zip_file_replace(za, ZIP_UINT64_MAX, name, source, flags);