From: Uwe Hermann Date: Tue, 6 Jun 2017 10:17:44 +0000 (+0200) Subject: Minor cosmetics. X-Git-Tag: libsigrok-0.5.0~24 X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;h=faf6dc4633a02970333a892da87ffc6bd1ee7977;hp=09b2ca47e6b3d510d5a7cb64ab99fbc7a7de84a3;p=libsigrok.git Minor cosmetics. --- diff --git a/src/hardware/hantek-6xxx/api.c b/src/hardware/hantek-6xxx/api.c index 08062add..a6aa6854 100644 --- a/src/hardware/hantek-6xxx/api.c +++ b/src/hardware/hantek-6xxx/api.c @@ -824,7 +824,8 @@ static int dev_acquisition_stop(struct sr_dev_inst *sdi) devc = sdi->priv; devc->dev_state = STOPPING; - g_free(devc->sample_buf); devc->sample_buf = NULL; + g_free(devc->sample_buf); + devc->sample_buf = NULL; return SR_OK; } 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));