Minor cosmetics.
This commit is contained in:
parent
09b2ca47e6
commit
faf6dc4633
|
@ -824,7 +824,8 @@ static int dev_acquisition_stop(struct sr_dev_inst *sdi)
|
||||||
devc = sdi->priv;
|
devc = sdi->priv;
|
||||||
devc->dev_state = STOPPING;
|
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;
|
return SR_OK;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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)
|
if (!entry_name || strncmp(entry_name, "logic-1", 7) != 0)
|
||||||
continue;
|
continue;
|
||||||
if (entry_name[7] == '\0') {
|
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) {
|
if (zip_rename(archive, i, "logic-1-1") < 0) {
|
||||||
sr_err("Failed to rename 'logic-1' to 'logic-1-1': %s",
|
sr_err("Failed to rename 'logic-1' to 'logic-1-1': %s",
|
||||||
zip_strerror(archive));
|
zip_strerror(archive));
|
||||||
|
|
Loading…
Reference in New Issue