X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Fwav.c;h=c23602354d969abc078e52f1cf39c0bf63fd4b61;hb=7c16e74d45b91123206efee2116d86462c8e707c;hp=e01f3afdea53bb9fc4dfdc7d3d71a934eea76268;hpb=1685c27619b7c8c9041476d0db437081ac892d4f;p=libsigrok.git diff --git a/src/output/wav.c b/src/output/wav.c index e01f3afd..c2360235 100644 --- a/src/output/wav.c +++ b/src/output/wav.c @@ -18,7 +18,7 @@ */ #include -#include "libsigrok.h" +#include #include "libsigrok-internal.h" #define LOG_PREFIX "output/wav" @@ -350,10 +350,11 @@ static const struct sr_option *get_options(void) SR_PRIV struct sr_output_module output_wav = { .id = "wav", .name = "WAV", - .desc = "WAVE file format", + .desc = "Microsoft WAV file format", + .exts = (const char*[]){"wav", NULL}, + .flags = 0, .options = get_options, .init = init, .receive = receive, .cleanup = cleanup, }; -