Commit 72152baf authored by Mike Gabriel's avatar Mike Gabriel

hw/nxagent/NXdispatch.c: Fix compiler warning: misleading-indentation

NXdispatch.c: In function 'Dispatch': NXdispatch.c:309:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation] if (!(dispatchException & DE_TERMINATE)) ^~ NXdispatch.c:312:5: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if' while (!dispatchException) ^~~~~
parent 6d98e538
...@@ -309,7 +309,7 @@ Reply Total Cached Bits In Bits Out Bits/Reply Ratio ...@@ -309,7 +309,7 @@ Reply Total Cached Bits In Bits Out Bits/Reply Ratio
if (!(dispatchException & DE_TERMINATE)) if (!(dispatchException & DE_TERMINATE))
dispatchException = 0; dispatchException = 0;
while (!dispatchException) while (!dispatchException)
{ {
if (*icheck[0] != *icheck[1]) if (*icheck[0] != *icheck[1])
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment