Browse Source

Updated code indent

Thomas Davis 11 years ago
parent
commit
e5060b5e78
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/civetweb.c

+ 4 - 4
src/civetweb.c

@@ -5769,10 +5769,10 @@ static void master_thread_run(void *thread_func_param)
     if ((min_prio >=0) && (max_prio >= 0) &&
         ((USE_MASTER_THREAD_PRIORITY) <= max_prio) &&
         ((USE_MASTER_THREAD_PRIORITY) >= min_prio)
-        ) {
-            struct sched_param sched_param = {0};
-            sched_param.sched_priority = (USE_MASTER_THREAD_PRIORITY);
-            pthread_setschedparam(pthread_self(), SCHED_RR, &sched_param);
+       ) {
+        struct sched_param sched_param = {0};
+        sched_param.sched_priority = (USE_MASTER_THREAD_PRIORITY);
+        pthread_setschedparam(pthread_self(), SCHED_RR, &sched_param);
     }
 #endif