aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-08-13 16:09:24 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-08-13 16:09:24 +0200
commit7028d7387efc2e0fbac403de075c4c9c2d310f80 (patch)
treeed0dac730db40a862e352510338d0017e8b3ba0c
parent646d1c82042d8e04e810e8532e462159aab6387b (diff)
jibuf: fix indentation in line inside conditional clause
-rw-r--r--src/jibuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jibuf.c b/src/jibuf.c
index 2632a57..502f6e5 100644
--- a/src/jibuf.c
+++ b/src/jibuf.c
@@ -322,7 +322,7 @@ void osmo_jibuf_delete(struct osmo_jibuf *jb)
struct msgb *msg, *tmp;
osmo_timer_del(&jb->timer);
llist_for_each_entry_safe(msg, tmp, &jb->msg_list, list)
- dequeue_msg(jb, msg);
+ dequeue_msg(jb, msg);
talloc_free(jb);
}