Code

utils_threshold.c: fix indentation
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 23 Jul 2016 12:50:17 +0000 (14:50 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 23 Jul 2016 12:50:17 +0000 (14:50 +0200)
src/daemon/utils_threshold.c

index 4a8df89d69e70c147e1fa8820c7884d1931b427c..cb1ea34a16f25851dd397c30bb07477b6f09ae1d 100644 (file)
@@ -124,16 +124,16 @@ int ut_search_threshold (const value_list_t *vl, /* {{{ */
   if (vl == NULL)
     return (EINVAL);
 
-       /* Is this lock really necessary? */
-       pthread_mutex_lock (&threshold_lock);
+  /* Is this lock really necessary? */
+  pthread_mutex_lock (&threshold_lock);
   t = threshold_search (vl);
   if (t == NULL) {
-               pthread_mutex_unlock (&threshold_lock);
+    pthread_mutex_unlock (&threshold_lock);
     return (ENOENT);
-       }
+  }
 
   memcpy (ret_threshold, t, sizeof (*ret_threshold));
-       pthread_mutex_unlock (&threshold_lock);
+  pthread_mutex_unlock (&threshold_lock);
 
   ret_threshold->next = NULL;