Skip to content

Commit

Permalink
tidy: Fix misleading indentation. (libmythtv)
Browse files Browse the repository at this point in the history
Fix places where the indentation of an 'else' doesn't match that of
the corresponding 'if', or if that statement after an 'if' isn't
indented, etc.  These problems were pointed out by clang-tidy's
"misleading indentation" check.

https://clang.llvm.org/extra/clang-tidy/checks/readability-misleading-indentation.html
  • Loading branch information
linuxdude42 committed Nov 23, 2019
1 parent 7e523ef commit f1f2825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/opengl/mythrenderopengl.cpp
Expand Up @@ -276,7 +276,7 @@ bool MythRenderOpenGL::Init(void)
m_openglDebugger->startLogging(mode);
if (mode == QOpenGLDebugLogger::AsynchronousLogging)
LOG(VB_GENERAL, LOG_INFO, LOC + "GPU debug logging started (async)");
else
else
LOG(VB_GENERAL, LOG_INFO, LOC + "Started synchronous GPU debug logging (will hurt performance)");

// filter messages. Some drivers can be extremely verbose for certain issues.
Expand Down

0 comments on commit f1f2825

Please sign in to comment.