X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=input%2Fbinary.c;h=809e9ebbc3dd2291fd77aa0275076078c69b57ce;hb=b6bad47c91a7cbc19571cbe49918a0612ad2babe;hp=148c41e782433cf4e852dde0b81a393ac110524e;hpb=543d45c581658851b41af42ebdbc476ccf3d88d3;p=libsigrok.git diff --git a/input/binary.c b/input/binary.c index 148c41e7..809e9ebb 100644 --- a/input/binary.c +++ b/input/binary.c @@ -1,7 +1,7 @@ /* - * This file is part of the sigrok project. + * This file is part of the libsigrok project. * - * Copyright (C) 2010-2012 Bert Vermeulen + * Copyright (C) 2013 Bert Vermeulen * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -121,9 +121,11 @@ static int loadfile(struct sr_input *in, const char *filename) if (ctx->samplerate) { packet.type = SR_DF_META; packet.payload = &meta; - src = sr_config_make(SR_CONF_SAMPLERATE, (const void *)&ctx->samplerate); + src = sr_config_new(SR_CONF_SAMPLERATE, + g_variant_new_uint64(ctx->samplerate)); meta.config = g_slist_append(NULL, src); sr_session_send(in->sdi, &packet); + sr_config_free(src); } /* Chop up the input file into chunks & send it to the session bus. */