From 39ac07bfde657ea7d7f17a6b7595d1d6370d9f95 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Fri, 1 Mar 2019 15:47:50 +1100 Subject: [PATCH] [c-host] removed debug code --- c-host/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c-host/app.c b/c-host/app.c index 7af6646f..14628308 100644 --- a/c-host/app.c +++ b/c-host/app.c @@ -204,7 +204,7 @@ int app_main(bool * termSignal) goto finish; } - if (true || !iface->deinit() || !iface->init()) + if (!iface->deinit() || !iface->init()) { DEBUG_ERROR("Failed to reinitialize the capture device"); exitcode = -1;