From 9d3d836047c614744e23ced20a09be60581ff8d1 Mon Sep 17 00:00:00 2001 From: John Cortell Date: Fri, 30 Apr 2010 14:22:35 +0000 Subject: [PATCH] Simplify BOOL check. --- core/org.eclipse.cdt.core.win32/library/raise.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core.win32/library/raise.c b/core/org.eclipse.cdt.core.win32/library/raise.c index 20f34d37ebe..7acbc5d5205 100644 --- a/core/org.eclipse.cdt.core.win32/library/raise.c +++ b/core/org.eclipse.cdt.core.win32/library/raise.c @@ -95,7 +95,7 @@ int interruptProcess(int pid) FreeLibrary(hmod); hmod = NULL; - if (success == TRUE) + if (success) return 0; // 0 == OK; if not, try old-school way }