aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/bsc/lchan_fsm.h
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2021-11-06 17:01:58 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2021-11-06 17:01:58 +0100
commit8700803fa8a2e7bb953aa01462a976675a8fb0fb (patch)
treededc4d7119880dc3b65918ccac2f90ffbc328522 /include/osmocom/bsc/lchan_fsm.h
parent0887442c20219f1f03b5042be26d1999ff062ffc (diff)
for linter: s/while(0)/while (0)
Diffstat (limited to 'include/osmocom/bsc/lchan_fsm.h')
-rw-r--r--include/osmocom/bsc/lchan_fsm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/bsc/lchan_fsm.h b/include/osmocom/bsc/lchan_fsm.h
index fa0d29984..eb8312e03 100644
--- a/include/osmocom/bsc/lchan_fsm.h
+++ b/include/osmocom/bsc/lchan_fsm.h
@@ -10,14 +10,14 @@
LOGPFSML((lchan)->fi, level, "(type=%s) " fmt, gsm_lchant_name((lchan)->type), ## args); \
else \
LOGP(DRSL, level, "%s (not initialized) " fmt, gsm_lchan_name(lchan), ## args); \
- } while(0)
+ } while (0)
#define LCHAN_SET_LAST_ERROR(LCHAN, fmt, args...) do { \
if ((LCHAN)->last_error) \
talloc_free((LCHAN)->last_error); \
(LCHAN)->last_error = talloc_asprintf((LCHAN)->ts->trx, fmt, ##args); \
LOG_LCHAN(LCHAN, LOGL_ERROR, "%s\n", (LCHAN)->last_error); \
- } while(0)
+ } while (0)
enum lchan_fsm_state {
LCHAN_ST_UNUSED,