From 8f4f7008d6032f6124403974334013d1b9d06205 Mon Sep 17 00:00:00 2001 From: KiritiGowda Date: Wed, 15 Jul 2026 11:34:55 -0700 Subject: [PATCH] Fix unclosed brace in vxExecuteGraph when OPENVX_USE_STREAMING is not defined The streaming commit (#69) introduced a while loop guarded by #ifdef OPENVX_USE_STREAMING, with a bare { in the #else path as a drop-in replacement. The } closing the while body was inside the #ifdef block, leaving the bare { in the non-streaming path unclosed. This caused a compile error at end-of-file for any build without -DOPENVX_USE_STREAMING=ON. Co-Authored-By: Claude --- sample/framework/vx_graph.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sample/framework/vx_graph.c b/sample/framework/vx_graph.c index 0365b65..f2e9e30 100644 --- a/sample/framework/vx_graph.c +++ b/sample/framework/vx_graph.c @@ -2728,6 +2728,8 @@ static vx_status vxExecuteGraph(vx_graph graph, vx_uint32 depth) if (!any_pipeup) steady_done = vx_true_e; } +#else + } #endif if (context->perf_enabled)