uncrustify FORMAT set various uncrustify options
PR #1228
diff --git a/src/hash_table.c b/src/hash_table.c
index cc6fbd0..1aef476 100644
--- a/src/hash_table.c
+++ b/src/hash_table.c
@@ -14,14 +14,14 @@
#include "hash_table.h"
-#include <string.h>
+#include <assert.h>
+#include <pthread.h>
#include <stdint.h>
#include <stdlib.h>
-#include <pthread.h>
-#include <assert.h>
+#include <string.h>
-#include "compat.h"
#include "common.h"
+#include "compat.h"
#include "dict.h"
#include "log.h"
@@ -693,7 +693,7 @@
/* enlarge */
ret = lyht_resize(ht, 1);
/* if hash_table was resized, we need to find new matching value */
- if (ret == LY_SUCCESS && match_p) {
+ if ((ret == LY_SUCCESS) && match_p) {
lyht_find(ht, val_p, hash, match_p);
}