Fixed compile error on Solaris.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@320 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-04-06 19:50:27 +00:00
parent 9b81486d6c
commit d9fe1d9bb7

View File

@@ -19,7 +19,7 @@
// To contact Novell about this file by physical or electronic mail,
// you may find current contact information at www.novell.com
//
// $Id$
// $Id: $
//-------------------------------------------------------------------------
#include "flaimsys.h"
@@ -173,7 +173,7 @@ FLMEXP RCODE FLMAPI FlmStorage2INT(
FLMINT * piNum)
{
RCODE rc = FERR_OK;
BCD_TYPE bcd = {0};
BCD_TYPE bcd;
if( RC_OK(rc = flmBcd2Num( uiValueType, uiValueLength, pucValue, &bcd)))
{
@@ -211,7 +211,7 @@ FLMEXP RCODE FLMAPI FlmStorage2UINT(
FLMUINT * puiNum)
{
RCODE rc = FERR_OK;
BCD_TYPE bcd = {0};
BCD_TYPE bcd;
if( RC_OK( rc = flmBcd2Num( uiValueType, uiValueLength, pucValue, &bcd)))
{
@@ -251,7 +251,7 @@ FLMEXP RCODE FLMAPI FlmStorage2UINT32(
FLMUINT32 * pui32Num)
{
RCODE rc = FERR_OK;
BCD_TYPE bcd = {0};
BCD_TYPE bcd;
if( RC_OK(rc = flmBcd2Num( uiValueType, uiValueLength, pucValue, &bcd)))
{