From 53ce107e5fb6e1a3dfd44d13a0ef27f82da26f7c Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 11 May 2004 00:07:16 +0000 Subject: [PATCH] fixed use of gdd::dataAddress() where gdd::dataVoid() should be used --- src/cas/generic/casStrmClient.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cas/generic/casStrmClient.cc b/src/cas/generic/casStrmClient.cc index fe08e87c1..a98243bf1 100644 --- a/src/cas/generic/casStrmClient.cc +++ b/src/cas/generic/casStrmClient.cc @@ -2040,7 +2040,7 @@ caStatus casStrmClient::writeScalarData () // copy in, and convert to native type, the incoming data // gddStatus gddStat = aitConvert ( - pDD->primitiveType(), pDD->dataAddress(), type, + pDD->primitiveType(), pDD->dataVoid(), type, this->ctx.getData(), 1, &this->ctx.getPV()->enumStringTable() ); caStatus status = S_cas_noConvert; if ( gddStat >= 0 ) {