X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=session.c;h=983d4841af7e3a2cce5960d85ac7dad72b3406ec;hb=3d24ca2da53f03585db396e67252a7dcd9e67e6e;hp=090fdce8f32fea1b408f25e6199ff446d2472db1;hpb=28b0b84e7ac805ab5a5c40191012d2739e550c74;p=sigrok-cli.git diff --git a/session.c b/session.c index 090fdce..983d484 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."); @@ -549,7 +553,7 @@ void run_session(void) g_slist_free(devices); g_slist_free(real_devices); - sr_session_new(&session); + sr_session_new(sr_ctx, &session); sr_session_datafeed_callback_add(session, datafeed_in, NULL); if (sr_dev_open(sdi) != SR_OK) { @@ -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); } -