[PATCH] ipc : mqueue.c :Fixed a brace coding style issue

From: Somala Swaraj
Date: Sun Mar 01 2020 - 08:56:13 EST


Fixed a coding style issue.

Signed-off-by: somala swaraj <somalaswaraj@xxxxxxxxx>
---
ipc/mqueue.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/ipc/mqueue.c b/ipc/mqueue.c
index 49a05ba3000d..dc8307bf2d74 100644
--- a/ipc/mqueue.c
+++ b/ipc/mqueue.c
@@ -239,11 +239,10 @@ static inline void msg_tree_erase(struct posix_msg_tree_node *leaf,
info->msg_tree_rightmost = rb_prev(node);

rb_erase(node, &info->msg_tree);
- if (info->node_cache) {
+ if (info->node_cache)
kfree(leaf);
- } else {
+ else
info->node_cache = leaf;
- }
}

static inline struct msg_msg *msg_get(struct mqueue_inode_info *info)
--
2.17.1