Commit: 74e86b631ed24733950189f2d52c7924e111eff2
Parent: b62c4f7b867c25f1ac642536e50eb9a6a13249e9
Author: Randy Palamar
Date: Wed, 9 Apr 2025 08:59:41 -0600
lib: fix missed {
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/helpers/ogl_beamformer_lib.c b/helpers/ogl_beamformer_lib.c
@@ -373,7 +373,7 @@ send_data(char *pipe_name, char *shm_name, void *data, u32 data_size)
{
b32 result = beamformer_push_data(shm_name, data, data_size, 0);
if (result) {
- if (beamformer_start_compute(shm_name, 0))
+ if (beamformer_start_compute(shm_name, 0)) {
/* TODO(rnp): should we just set timeout on acquiring the lock instead of this? */
try_wait_sync(&g_bp->raw_data_sync, -1, os_wait_on_value);
atomic_store(&g_bp->raw_data_sync, 1);