diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-10-06 16:53:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-10-06 16:53:41 (GMT) |
commit | 63647f7f5690787634c1b4346e07b2953ceaf761 (patch) | |
tree | 263d19417534ff4a07340482180cc67fb725e5e6 /c++ | |
parent | 10db3806f2b3b0cb2b62125fb194ca2164ecdd6e (diff) | |
download | hdf5-63647f7f5690787634c1b4346e07b2953ceaf761.zip hdf5-63647f7f5690787634c1b4346e07b2953ceaf761.tar.gz hdf5-63647f7f5690787634c1b4346e07b2953ceaf761.tar.bz2 |
[svn-r17596] Description:
Clean up minor compiler warning.
Tested on:
Mac OS X/32 10.6.1 (amazon)
Diffstat (limited to 'c++')
-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 cddb5d4..5812890 100644 --- a/c++/src/H5DataSet.cpp +++ b/c++/src/H5DataSet.cpp @@ -229,7 +229,7 @@ hsize_t DataSet::getStorageSize() const //-------------------------------------------------------------------------- size_t DataSet::getInMemDataSize() const { - char *func = "DataSet::getInMemDataSize"; + const char *func = "DataSet::getInMemDataSize"; // Get the data type of this dataset hid_t mem_type_id = H5Dget_type(id); |