From ad088c09c2a5022eb12dbea4523242e05c5d7bdd Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 26 Jul 2012 17:13:54 +0200 Subject: MinGW & Ruby-1.9 updates --- cpp/src/Ice/Application.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/Ice/Application.cpp') diff --git a/cpp/src/Ice/Application.cpp b/cpp/src/Ice/Application.cpp index c7abb540a69..2a879eeaaee 100644 --- a/cpp/src/Ice/Application.cpp +++ b/cpp/src/Ice/Application.cpp @@ -141,7 +141,7 @@ destroyOnInterruptCallback(int signal) // return; } - if(_nohup && signal == SIGHUP) + if(_nohup && signal == static_cast(SIGHUP)) { return; } @@ -197,7 +197,7 @@ shutdownOnInterruptCallback(int signal) // return; } - if(_nohup && signal == SIGHUP) + if(_nohup && signal == static_cast(SIGHUP)) { return; } -- cgit v1.2.3