From 46fea077983ecc6be1898ce5971222f5e6bcb0c4 Mon Sep 17 00:00:00 2001 From: ageay Date: Fri, 25 Feb 2005 14:36:11 +0000 Subject: [PATCH] sizeof(CORBA::Long) != sizeof(long) sur le CCRT. --- src/Container/Container_i.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Container/Container_i.cxx b/src/Container/Container_i.cxx index b65bf13bd..2a4257217 100644 --- a/src/Container/Container_i.cxx +++ b/src/Container/Container_i.cxx @@ -332,8 +332,8 @@ void SigIntHandler(int what , siginfo_t * siginfo , // Get the PID of the Container -long Engines_Container_i::getPID() { - return (long)getpid(); +CORBA::Long Engines_Container_i::getPID() { + return (CORBA::Long)getpid(); } // Get the hostName of the Container -- 2.39.2