X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=blobdiff_plain;f=session.c;h=aa30266f975e9447a72a8dafa4f7b21fcf05f42a;hp=090fdce8f32fea1b408f25e6199ff446d2472db1;hb=f0f54487c6a146af523d6eb19fcce63422e3f0f1;hpb=abb036855e8a35ddeaf7c8bcba02741d78bc25ba diff --git a/session.c b/session.c index 090fdce..aa30266 100644 --- a/session.c +++ b/session.c @@ -308,8 +308,10 @@ void datafeed_in(const struct sr_dev_inst *sdi, if (!out || (out->len == 0 && !opt_output_format && packet->type == SR_DF_ANALOG)) { - /* The user didn't specify an output module, - * but needs to see this analog data. */ + /* + * The user didn't specify an output module, + * but needs to see this analog data. + */ sr_output_send(oa, packet, &out); } if (out && out->len > 0) { @@ -321,8 +323,10 @@ void datafeed_in(const struct sr_dev_inst *sdi, } } - /* SR_DF_END needs to be handled after the output module's receive() - * is called, so it can properly clean up that module. */ + /* + * SR_DF_END needs to be handled after the output module's receive() + * is called, so it can properly clean up that module. + */ if (packet->type == SR_DF_END) { g_debug("cli: Received SR_DF_END."); @@ -611,8 +615,10 @@ void run_session(void) } if (maybe_config_list(driver, sdi, NULL, SR_CONF_LIMIT_SAMPLES, &gvar) == SR_OK) { - /* The device has no compression, or compression is turned - * off, and publishes its sample memory size. */ + /* + * The device has no compression, or compression is turned + * off, and publishes its sample memory size. + */ g_variant_get(gvar, "(tt)", &min_samples, &max_samples); g_variant_unref(gvar); if (limit_samples < min_samples) { @@ -667,4 +673,3 @@ void run_session(void) sr_session_destroy(session); } -