From c4fffe1e9606e3e63a4cd0b760a37beb1f122cc5 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Wed, 14 Jul 2010 22:09:21 +0200 Subject: [PATCH] hwplugin.c: Add missing config.h #include. This fixes a bug where no LA would be found or displayed in lists such as 'sigrok-cli -H' or 'sigrok-cli -D'. Thanks Forrest Voight for spotting the bug. --- hwplugin.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hwplugin.c b/hwplugin.c index 0dd8d75b..aa1b8f7f 100644 --- a/hwplugin.c +++ b/hwplugin.c @@ -24,6 +24,7 @@ #include #include #include +#include "config.h" source_callback_add source_cb_add = NULL; source_callback_remove source_cb_remove = NULL;