[svn-r10917] Purpose: Bug fix

Description: Fix the codes of last checkin(Bug #341).  Some failures happened
in daily test from last checkin.  Try to fix them in this checkin.


Platforms tested: modi4, mir, and tg-login2.
This commit is contained in:
Raymond Lu 2005-06-14 13:22:19 -05:00
parent ccc9a37b52
commit 1d6d996286

View File

@ -671,11 +671,11 @@ H5T_init_interface(void)
H5T_t *native_uint=NULL; /* Datatype structure for native unsigned int */
H5T_t *native_long=NULL; /* Datatype structure for native long */
H5T_t *native_ulong=NULL; /* Datatype structure for native unsigned long */
H5T_t *native_llong=NULL; /* Datatype structure for native llong */
H5T_t *native_ullong=NULL; /* Datatype structure for native unsigned llong */
H5T_t *native_llong=NULL; /* Datatype structure for native long long */
H5T_t *native_ullong=NULL; /* Datatype structure for native unsigned long long */
H5T_t *native_float=NULL; /* Datatype structure for native float */
H5T_t *native_double=NULL; /* Datatype structure for native double */
H5T_t *native_ldouble=NULL; /* Datatype structure for native double */
H5T_t *native_ldouble=NULL; /* Datatype structure for native long double */
H5T_t *std_u8le=NULL; /* Datatype structure for unsigned 8-bit little-endian integer */
H5T_t *std_u8be=NULL; /* Datatype structure for unsigned 8-bit big-endian integer */
H5T_t *std_u16le=NULL; /* Datatype structure for unsigned 16-bit little-endian integer */
@ -747,10 +747,8 @@ H5T_init_interface(void)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a datatype object");
if (NULL==(native_double=H5I_object(H5T_NATIVE_DOUBLE_g)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a datatype object");
#if H5_SW_LDOUBLE_TO_INTEGER_WORKS || H5_SW_INTEGER_TO_LDOUBLE_WORKS
if (NULL==(native_ldouble=H5I_object(H5T_NATIVE_LDOUBLE_g)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a datatype object");
#endif /*H5_SW_LDOUBLE_TO_INTEGER_WORKS || H5_SW_INTEGER_TO_LDOUBLE_WORKS */
/*------------------------------------------------------------
* Native types