summaryrefslogtreecommitdiff
path: root/ext/zip/lib/zip_file_add.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/zip/lib/zip_file_add.c')
-rw-r--r--ext/zip/lib/zip_file_add.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/zip/lib/zip_file_add.c b/ext/zip/lib/zip_file_add.c
index 995cb91c1a..a30fd0b0f3 100644
--- a/ext/zip/lib/zip_file_add.c
+++ b/ext/zip/lib/zip_file_add.c
@@ -17,7 +17,7 @@
3. The names of the authors may not be used to endorse or promote
products derived from this software without specific prior
written permission.
-
+
THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -31,10 +31,10 @@
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-
+
#include "zipint.h"
-
+
/*
NOTE: Return type is signed so we can return -1 on error.
@@ -50,6 +50,6 @@ zip_file_add(struct zip *za, const char *name, struct zip_source *source, zip_fl
_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
return -1;
}
-
+
return _zip_file_replace(za, ZIP_UINT64_MAX, name, source, flags);
}