From: Tim Kientzle Date: Fri, 27 Dec 2013 07:17:29 +0000 (-0800) Subject: Fix whitespace X-Git-Tag: v3.1.900a~327^2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0280be567c473d6e0f18ea6d601d1af66c9dc86;p=thirdparty%2Flibarchive.git Fix whitespace --- diff --git a/libarchive/archive_write_set_format_zip.c b/libarchive/archive_write_set_format_zip.c index ca3518573..96b502523 100644 --- a/libarchive/archive_write_set_format_zip.c +++ b/libarchive/archive_write_set_format_zip.c @@ -144,7 +144,7 @@ cd_alloc(struct zip *zip, size_t length) unsigned char *p; if (zip->central_directory == NULL - || (zip->central_directory_last->p + length + || (zip->central_directory_last->p + length > zip->central_directory_last->buff + zip->central_directory_last->buff_size)) { struct cd_segment *segment = calloc(1, sizeof(*segment)); if (segment == NULL) @@ -779,7 +779,7 @@ archive_write_zip_finish_entry(struct archive_write *a) zd = cd_alloc(zip, z - zip64); if (zd == NULL) { archive_set_error(&a->archive, ENOMEM, - "Can't allocate zip data"); + "Can't allocate zip data"); return (ARCHIVE_FATAL); } memcpy(zd, zip64, z - zip64);