[svn-r10816] Purpose: Fix bug (reported by user, not filed)

Description:
    Passing 0 where it should be "".  Fixed!

Platforms tested:
    Linux 2.4 (heping) - very minor, and has been in 1.6 for a while
This commit is contained in:
Binh-Minh Ribler
2005-05-28 12:26:00 -05:00
parent aed9bf19db
commit 0d580697f6
2 changed files with 2 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ hid_t DataSet::p_get_type() const
return( type_id );
else
{
throw DataSetIException(0, "H5Dget_type failed");
throw DataSetIException("", "H5Dget_type failed");
}
}