]> sigrok.org Git - libsigrok.git/blobdiff - src/output/srzip.c
Minor cosmetics.
[libsigrok.git] / src / output / srzip.c
index b554558534a3587bf81d99d4e691f5b3ad03cc6e..249fe057994aeeaf80b9106ae3b041a8c1fb7b5e 100644 (file)
@@ -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));
@@ -339,7 +342,7 @@ static int zip_append_analog(const struct sr_output *o,
                if (outc->analog_index_map[index] == channel->index)
                        break;
        if (outc->analog_index_map[index] == -1)
-               return SR_ERR_ARG;  /* Channel index was not in the list */
+               return SR_ERR_ARG; /* Channel index was not in the list */
 
        index += outc->first_analog_index;