]> sigrok.org Git - libsigrok.git/blobdiff - src/input/binary.c
sr_input_new(): Add missing @param comment.
[libsigrok.git] / src / input / binary.c
index 813cf4a46e8be054d8ee0f42fc8dc0aca360191c..5d5fc865b2fe1a51228e61d09a87c2d5f0976c30 100644 (file)
@@ -50,7 +50,7 @@ static int init(struct sr_input *in, GHashTable *options)
                return SR_ERR_ARG;
        }
 
-       in->sdi = sr_dev_inst_new(SR_ST_ACTIVE, NULL, NULL, NULL);
+       in->sdi = g_malloc0(sizeof(struct sr_dev_inst));
        in->priv = inc = g_malloc0(sizeof(struct context));
 
        inc->samplerate = g_variant_get_uint64(g_hash_table_lookup(options, "samplerate"));