From faf6dc4633a02970333a892da87ffc6bd1ee7977 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Tue, 6 Jun 2017 12:17:44 +0200 Subject: [PATCH] Minor cosmetics. --- src/hardware/hantek-6xxx/api.c | 3 ++- src/output/srzip.c | 7 +++++-- 2 files changed, 7 insertions(+), 3 deletions(-) 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));