[svn-r7920] Purpose:

Bug fix

Description:
    Correct a couple of minor problems with 1.6 compat mode.

Platforms tested:
    FreeBSD 4.9 (sleipnir)
    not tested in h5committest
This commit is contained in:
Quincey Koziol
2003-12-10 11:06:37 -05:00
parent 31431be374
commit e71e53c743
2 changed files with 3 additions and 3 deletions

View File

@@ -766,7 +766,7 @@ H5Eget_major(H5E_major_t maj)
char *msg_str;
char *ret_value = NULL;
FUNC_ENTER_API(H5Eget_major)
FUNC_ENTER_API_NOCLEAR(H5Eget_major,NULL)
/* Get the message object */
if((msg = H5I_object_verify(maj, H5I_ERROR_MSG))==NULL)
@@ -816,7 +816,7 @@ H5Eget_minor(H5E_minor_t min)
char *msg_str;
char *ret_value = NULL;
FUNC_ENTER_API(H5Eget_minor)
FUNC_ENTER_API_NOCLEAR(H5Eget_minor,NULL)
/* Get the message object */
if((msg = H5I_object_verify(min, H5I_ERROR_MSG))==NULL)