]> sigrok.org Git - libsigrok.git/blobdiff - src/output/binary.c
output/csv: Fix a gcc 7 compiler warning.
[libsigrok.git] / src / output / binary.c
index 04627f32287c13e46adc09fcf88d96ef6344d64c..f4d190107c1b747ba78b4b8e4827f01ee365e50b 100644 (file)
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <stdlib.h>
 #include <string.h>
 #include <glib.h>
-#include "libsigrok.h"
+#include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
 #define LOG_PREFIX "output/binary"
@@ -47,6 +47,7 @@ SR_PRIV struct sr_output_module output_binary = {
        .name = "Binary",
        .desc = "Raw binary",
        .exts = NULL,
+       .flags = 0,
        .options = NULL,
        .receive = receive,
 };