diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-07-25 21:45:21 -0300 |
---|---|---|
committer | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-07-25 21:47:04 -0300 |
commit | 9e4d590b1982cf38f23948dff1beffd06fd9e0d3 (patch) | |
tree | 95fa8058f9b59f544ea98d2669cc1c5a9d44cce5 /ext/zip/lib/zip_source_crc.c | |
parent | 8d18d631b6145dea0dd579bcc8ffe446271b511d (diff) | |
download | php-git-9e4d590b1982cf38f23948dff1beffd06fd9e0d3.tar.gz |
Remove extra semicolons
Diffstat (limited to 'ext/zip/lib/zip_source_crc.c')
-rw-r--r-- | ext/zip/lib/zip_source_crc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zip/lib/zip_source_crc.c b/ext/zip/lib/zip_source_crc.c index 2967e47221..2ace747905 100644 --- a/ext/zip/lib/zip_source_crc.c +++ b/ext/zip/lib/zip_source_crc.c @@ -150,7 +150,7 @@ crc_read(zip_source_t *src, void *_ctx, void *data, zip_uint64_t len, zip_source st->comp_size = ctx->size; st->comp_method = ZIP_CM_STORE; st->encryption_method = ZIP_EM_NONE; - st->valid |= ZIP_STAT_SIZE|ZIP_STAT_CRC|ZIP_STAT_COMP_SIZE|ZIP_STAT_COMP_METHOD|ZIP_STAT_ENCRYPTION_METHOD;; + st->valid |= ZIP_STAT_SIZE|ZIP_STAT_CRC|ZIP_STAT_COMP_SIZE|ZIP_STAT_COMP_METHOD|ZIP_STAT_ENCRYPTION_METHOD; } return 0; } |