diff -urN Ice-3.0.0/demo/Ice/throughput/Client.cpp Ice-3.0.0.patched.clean/demo/Ice/throughput/Client.cpp --- Ice-3.0.0/demo/Ice/throughput/Client.cpp 2005-09-09 08:52:39 +0200 +++ Ice-3.0.0.patched.clean/demo/Ice/throughput/Client.cpp 2006-02-07 09:26:46 +0100 @@ -52,7 +52,7 @@ } ThroughputPrx throughputOneway = ThroughputPrx::uncheckedCast(throughput->ice_oneway()); - ByteSeq byteSeq(ByteSeqSize, 0); + ByteSeq byteSeq(ByteSeqSize, (Ice::Byte)0); StringSeq stringSeq(StringSeqSize, "hello"); diff -urN Ice-3.0.0/demo/Ice/throughput/ThroughputI.cpp Ice-3.0.0.patched.clean/demo/Ice/throughput/ThroughputI.cpp --- Ice-3.0.0/demo/Ice/throughput/ThroughputI.cpp 2005-09-09 08:52:39 +0200 +++ Ice-3.0.0.patched.clean/demo/Ice/throughput/ThroughputI.cpp 2006-02-07 09:27:23 +0100 @@ -11,7 +11,7 @@ #include ThroughputI::ThroughputI() : - _byteSeq(Demo::ByteSeqSize, 0), + _byteSeq(Demo::ByteSeqSize, (Ice::Byte)0), _stringSeq(Demo::StringSeqSize, "hello"), _structSeq(Demo::StringDoubleSeqSize), _fixedSeq(Demo::FixedSeqSize) diff -urN Ice-3.0.0/src/Ice/ConnectionI.cpp Ice-3.0.0.patched.clean/src/Ice/ConnectionI.cpp --- Ice-3.0.0/src/Ice/ConnectionI.cpp 2005-11-15 16:47:57 +0100 +++ Ice-3.0.0.patched.clean/src/Ice/ConnectionI.cpp 2006-02-06 16:54:58 +0100 @@ -1381,7 +1381,7 @@ _acmTimeout(0), _requestHdr(headerSize + sizeof(Int), 0), _requestBatchHdr(headerSize + sizeof(Int), 0), - _replyHdr(headerSize, 0), + _replyHdr(headerSize, (Byte)0), _compressionLevel(1), _nextRequestId(1), _requestsHint(_requests.end()), diff -urN Ice-3.0.0/test/Ice/operations/BatchOneways.cpp Ice-3.0.0.patched.clean/test/Ice/operations/BatchOneways.cpp --- Ice-3.0.0/test/Ice/operations/BatchOneways.cpp 2005-02-16 21:22:24 +0100 +++ Ice-3.0.0.patched.clean/test/Ice/operations/BatchOneways.cpp 2006-02-06 18:28:17 +0100 @@ -16,9 +16,9 @@ void batchOneways(const Test::MyClassPrx& p) { - const Test::ByteS bs1(10 * 1024, 0); - const Test::ByteS bs2(99 * 1024, 0); - const Test::ByteS bs3(100 * 1024, 0); + const Test::ByteS bs1(10 * 1024, (Ice::Byte)0); + const Test::ByteS bs2(99 * 1024, (Ice::Byte)0); + const Test::ByteS bs3(100 * 1024, (Ice::Byte)0); try {