diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-05-28 17:26:00 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-05-28 17:26:00 (GMT) |
commit | 0d580697f6856de2bd0a1c394890afcbbde16d0b (patch) | |
tree | 978d7bf7f4fa522bf81b5165a9af34bc8483e0dd /c++/src/H5DataSet.cpp | |
parent | aed9bf19db86cf7117cec39bbdb20ddf6eb981c6 (diff) | |
download | hdf5-0d580697f6856de2bd0a1c394890afcbbde16d0b.zip hdf5-0d580697f6856de2bd0a1c394890afcbbde16d0b.tar.gz hdf5-0d580697f6856de2bd0a1c394890afcbbde16d0b.tar.bz2 |
[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
Diffstat (limited to 'c++/src/H5DataSet.cpp')
-rw-r--r-- | c++/src/H5DataSet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5DataSet.cpp b/c++/src/H5DataSet.cpp index 1e8af3c..4cb84e9 100644 --- a/c++/src/H5DataSet.cpp +++ b/c++/src/H5DataSet.cpp @@ -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"); } } |