X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=input%2Finput_binary.c;h=2b5580d984d691062cffe78eb6084d96cac24eed;hb=8c48f17944a224787aa430b3b3dc5f8709ccb700;hp=be67f2d2d33767e8f9b59f5ee7356d38197193b0;hpb=2bf4aca64ad435a09359662446762840ac55db1d;p=libsigrok.git diff --git a/input/input_binary.c b/input/input_binary.c index be67f2d2..2b5580d9 100644 --- a/input/input_binary.c +++ b/input/input_binary.c @@ -99,9 +99,9 @@ static int loadfile(struct sr_input *in, const char *filename) } struct sr_input_format input_binary = { - "binary", - "Raw binary", - format_match, - init, - loadfile, + .id = "binary", + .description = "Raw binary", + .format_match = format_match, + .init = init, + .loadfile = loadfile, };