X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Fsrzip.c;h=249fe057994aeeaf80b9106ae3b041a8c1fb7b5e;hb=1f488f50b91a67ffc85aa36cea63f09b580aa36e;hp=43dbd16b0a05da2f852ada1d4c9d57d46dc4ddce;hpb=d9251a2c9f1ca4380c27240ccca90c9f9ed46d3f;p=libsigrok.git diff --git a/src/output/srzip.c b/src/output/srzip.c index 43dbd16b..249fe057 100644 --- a/src/output/srzip.c +++ b/src/output/srzip.c @@ -260,8 +260,11 @@ static int zip_append(const struct sr_output *o, unsigned char *buf, if (!entry_name || strncmp(entry_name, "logic-1", 7) != 0) continue; if (entry_name[7] == '\0') { - /* This file has no extra chunks, just a single "logic-1". - * Rename it to "logic-1-1" * and continue with chunk 2. */ + /* + * This file has no extra chunks, just a single + * "logic-1". Rename it to "logic-1-1" and continue + * with chunk 2. + */ if (zip_rename(archive, i, "logic-1-1") < 0) { sr_err("Failed to rename 'logic-1' to 'logic-1-1': %s", zip_strerror(archive));