From 408b6ae13890bfb34e899a351f80513cda0ce712 Mon Sep 17 00:00:00 2001 From: Kai Krakow Date: Sat, 27 Jan 2018 22:42:56 +0100 Subject: [PATCH] Code style: Fix wrong indentation This had spaces instead of tabs by accident. Signed-off-by: Kai Krakow --- src/bees.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bees.cc b/src/bees.cc index 54a0776..ef69f1f 100644 --- a/src/bees.cc +++ b/src/bees.cc @@ -147,12 +147,12 @@ BeesNote::get_name() // remember it. Each output message may be a different Task. // The current task is thread_local so we don't need to worry // about it being destroyed under us. - auto current_task = Task::current_task(); - if (current_task) { + auto current_task = Task::current_task(); + if (current_task) { return current_task.title(); - } + } - // OK try the pthread name next. + // OK try the pthread name next. char buf[24]; memset(buf, '\0', sizeof(buf)); int err = pthread_getname_np(pthread_self(), buf, sizeof(buf));