# HG changeset patch # User Daniel A. Rubio # Date 1276600422 -3600 # Node ID f0e296d9d1c14f71201d183a74a761ea7ee2ae08 # Parent e36c41247a1dc7f3188bc416c55f16581b42d49c Bug 2964 - GCC-E compilation error in bt caused by commsfw -- Elif with missing expression diff -r e36c41247a1d -r f0e296d9d1c1 commsfwutils/commsbufs/src/systemsharedbufs.cpp --- a/commsfwutils/commsbufs/src/systemsharedbufs.cpp Tue Jun 15 11:42:56 2010 +0100 +++ b/commsfwutils/commsbufs/src/systemsharedbufs.cpp Tue Jun 15 12:13:42 2010 +0100 @@ -28,8 +28,8 @@ // We take the freelist count as 50% of the ceiling size. const TInt KFreeListCount = aCreateInfo.iCeiling / 2; self = new CSystemSharedBufPool(aPondIntf, aCreateInfo.iBufSize, KFreeListCount); -#elif - self = new CSystemSharedBufPool(aPondIntf, aCreateInfo.iBufSize); +#else + self = new CSystemSharedBufPool(aPondIntf, aCreateInfo.iBufSize); #endif // SYMBIAN_ZEROCOPY_BUF_FREELIST if(self) {