From: Jonathan M. <jmc...@gm...> - 2012-01-04 22:54:02
|
Hi Michael, Attached are two small patches which I believe fix the gcc warnings and issues listed on the Debian buildd logs page [1]. Thanks, Jon [1] https://buildd.debian.org/~brlink/packages/l/lcd4linux.html Signed-off by: Jonathan McCrohan <jmc...@gm...> diff --git a/plugin_qnaplog.c b/plugin_qnaplog.c index ef7ad77..b574b19 100644 --- a/plugin_qnaplog.c +++ b/plugin_qnaplog.c @@ -281,7 +281,7 @@ static void my_conn(RESULT * result, RESULT * arg1) time_t accesstime; - value = -1; + value = NULL; key = R2S(arg1); if (configureConn() >= 0) { @@ -337,7 +337,7 @@ static void my_event(RESULT * result, RESULT * arg1) time_t accesstime; - value = -1; + value = NULL; key = R2S(arg1); if (configureEvent() >= 0) { |