Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2011-05-04 20:29:01 +0000
committereutarass2011-05-04 20:29:01 +0000
commitdf45816fc9e20318055153fa2207df8f40bbf613 (patch)
tree6fb34e0356ec0c16e7ce3a5eaca68bdc692493c5
parent32dfa5722910485e7e7a001e58f639a714f23951 (diff)
downloadorg.eclipse.tcf.agent-df45816fc9e20318055153fa2207df8f40bbf613.tar.gz
org.eclipse.tcf.agent-df45816fc9e20318055153fa2207df8f40bbf613.tar.xz
org.eclipse.tcf.agent-df45816fc9e20318055153fa2207df8f40bbf613.zip
TCF Agent: got rid of compiler warning: suggest parentheses around && within ||
-rw-r--r--system/Windows/context-win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/Windows/context-win32.c b/system/Windows/context-win32.c
index b02e7933..55bec995 100644
--- a/system/Windows/context-win32.c
+++ b/system/Windows/context-win32.c
@@ -291,7 +291,7 @@ static DWORD event_win32_context_stopped(Context * ctx) {
}
}
}
- if (!ctx->stopped_by_cb && ext->step_opcodes_len == 0 || ext->regs_error) {
+ if ((!ctx->stopped_by_cb && ext->step_opcodes_len == 0) || ext->regs_error) {
continue_status = DBG_EXCEPTION_NOT_HANDLED;
}
ext->step_opcodes_len = 0;

Back to the top