X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Fwav.c;h=fb809500c5e3b7b776c555c9fe7b9b3810cde104;hb=baed0211a1ecada69c5ab53cf979e2e543a0ceaa;hp=45854caac1f684f445d2bee87e032e9cff831c79;hpb=a82c83c6a506a41154344593948de859e5b9ae7e;p=libsigrok.git diff --git a/src/output/wav.c b/src/output/wav.c index 45854caa..fb809500 100644 --- a/src/output/wav.c +++ b/src/output/wav.c @@ -17,8 +17,9 @@ * along with this program. If not, see . */ +#include #include -#include "libsigrok.h" +#include #include "libsigrok-internal.h" #define LOG_PREFIX "output/wav" @@ -352,9 +353,9 @@ SR_PRIV struct sr_output_module output_wav = { .name = "WAV", .desc = "Microsoft WAV file format", .exts = (const char*[]){"wav", NULL}, + .flags = 0, .options = get_options, .init = init, .receive = receive, .cleanup = cleanup, }; -