summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHunter <lh563566994@126.com>2016-09-08 12:04:06 +0800
committerGarrett D'Amore <garrett@damore.org>2016-09-07 21:04:06 -0700
commit82ee4d742439df9e7924e805598fcf28e73fb7f3 (patch)
treeaf27806f77bd56b00be2aa8f36727b82aef707f2
parent434f9f0d4b2c951ab4158b34d4b3c9063e74a482 (diff)
downloadnanomsg-82ee4d742439df9e7924e805598fcf28e73fb7f3.tar.gz
fix inconsistent indentation (#788)
-rw-r--r--src/aio/worker_posix.inc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/aio/worker_posix.inc b/src/aio/worker_posix.inc
index afdaa9e..b09b00b 100644
--- a/src/aio/worker_posix.inc
+++ b/src/aio/worker_posix.inc
@@ -220,12 +220,12 @@ static void nn_worker_routine (void *arg)
/* If the worker thread is asked to stop, do so. */
if (nn_slow (item == &self->stop)) {
- /* Make sure we remove all the other workers from
- the queue, because we're not doing anything with
- them. */
- while (nn_queue_pop (&tasks) != NULL) {
- continue;
- }
+ /* Make sure we remove all the other workers from
+ the queue, because we're not doing anything with
+ them. */
+ while (nn_queue_pop (&tasks) != NULL) {
+ continue;
+ }
nn_queue_term (&tasks);
return;
}