From 32fd715cb7918dd13af14dcfd0a10e909cfac306 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Fri, 4 May 2012 10:18:22 +0200 Subject: [PATCH 1/1] Fix bracket placing Make it consistent with the rest of the code Signed-off-by: Thomas Jarosch --- controller.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller.c b/controller.c index 5d19e7a..f95f3d8 100644 --- a/controller.c +++ b/controller.c @@ -735,7 +735,7 @@ SRD_API int srd_session_start(int num_probes, int unitsize, uint64_t samplerate) di->data_num_probes = num_probes; di->data_unitsize = unitsize; di->data_samplerate = samplerate; - if ((ret = srd_inst_start(di, args) != SRD_OK)) + if ((ret = srd_inst_start(di, args)) != SRD_OK) break; } -- 2.30.2