]> sigrok.org Git - libsigrok.git/blobdiff - input/input_binary.c
log messages: Use device name, not vendor name.
[libsigrok.git] / input / input_binary.c
index be67f2d2d33767e8f9b59f5ee7356d38197193b0..2b5580d984d691062cffe78eb6084d96cac24eed 100644 (file)
@@ -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,
 };