summaryrefslogtreecommitdiff
path: root/scripts/sorttable.h
diff options
context:
space:
mode:
authorYinan Liu <yinan@linux.alibaba.com>2021-12-07 23:13:47 +0800
committerSteven Rostedt (VMware) <rostedt@goodmis.org>2021-12-11 09:34:31 -0500
commitc8a7ff13f5fc6e6b313de2a8e02304c2a90a3906 (patch)
treecded4e44e5f7cf3e7996dfd6fd6ca5334fd78539 /scripts/sorttable.h
parent2972e3050e3517a85ca1813b227d4c302e804343 (diff)
script/sorttable: Code style improvements
Modified the code style issue of if() {}, keep the code style consistent. Link: https://lkml.kernel.org/r/20211207151348.54921-3-yinan@linux.alibaba.com Signed-off-by: Yinan Liu <yinan@linux.alibaba.com> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'scripts/sorttable.h')
-rw-r--r--scripts/sorttable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/sorttable.h b/scripts/sorttable.h
index a2baa2fefb13..7b9745cf8c70 100644
--- a/scripts/sorttable.h
+++ b/scripts/sorttable.h
@@ -364,11 +364,11 @@ out:
void *retval = NULL;
/* wait for ORC tables sort done */
rc = pthread_join(orc_sort_thread, &retval);
- if (rc)
+ if (rc) {
fprintf(stderr,
"pthread_join failed '%s': %s\n",
strerror(errno), fname);
- else if (retval) {
+ } else if (retval) {
rc = -1;
fprintf(stderr,
"failed to sort ORC tables '%s': %s\n",