diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-08-10 16:20:07 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-08-10 16:20:07 +0000 |
commit | 39de220418a124fd016fe03c08c3097597397bfa (patch) | |
tree | fcd33fcead1e72f34f4d4ea2a80cd2aa401299b1 /cpp/src/IceGrid/Activator.cpp | |
parent | add missing zeroc header (diff) | |
download | ice-39de220418a124fd016fe03c08c3097597397bfa.tar.bz2 ice-39de220418a124fd016fe03c08c3097597397bfa.tar.xz ice-39de220418a124fd016fe03c08c3097597397bfa.zip |
Suppress BCB warnings
Diffstat (limited to 'cpp/src/IceGrid/Activator.cpp')
-rw-r--r-- | cpp/src/IceGrid/Activator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/Activator.cpp b/cpp/src/IceGrid/Activator.cpp index 1eb4a4d34d3..902711b8975 100644 --- a/cpp/src/IceGrid/Activator.cpp +++ b/cpp/src/IceGrid/Activator.cpp @@ -879,7 +879,7 @@ Activator::kill(const string& name) throw ex; } - BOOL b = TerminateProcess(hnd, 0); // We use 0 for the exit code to make sure it's not considered as a crash. + TerminateProcess(hnd, 0); // We use 0 for the exit code to make sure it's not considered as a crash. CloseHandle(hnd); @@ -1136,7 +1136,7 @@ Activator::terminationListener() for(vector<Process>::const_iterator p = terminated.begin(); p != terminated.end(); ++p) { DWORD status; - BOOL b = GetExitCodeProcess(p->hnd, &status); + GetExitCodeProcess(p->hnd, &status); CloseHandle(p->hnd); assert(status != STILL_ACTIVE); |