This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: libdvbv5: fix compile error Author: Hans Verkuil <[email protected]> Date: Sun May 25 16:04:55 2014 +0200 Fix the following compile error: dvb-v5.c:6:29: fatal error: libdvbv5/dvb-v5.h: No such file or directory by using #include "dvb-v5.h", just like the other sources that include this header. Signed-off-by: Hans Verkuil <[email protected]> lib/libdvbv5/dvb-v5.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=6f4f1d9121dc89bec4fe53465496083dbfbd71eb diff --git a/lib/libdvbv5/dvb-v5.c b/lib/libdvbv5/dvb-v5.c index 469b8e2..ade44f1 100644 --- a/lib/libdvbv5/dvb-v5.c +++ b/lib/libdvbv5/dvb-v5.c @@ -3,7 +3,7 @@ */ #include <stddef.h> -#include <libdvbv5/dvb-v5.h> +#include "dvb-v5.h" struct fe_caps_name fe_caps_name[31] = { { FE_CAN_2G_MODULATION, "CAN_2G_MODULATION" }, _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
