summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-10-06 16:53:41 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-10-06 16:53:41 (GMT)
commit63647f7f5690787634c1b4346e07b2953ceaf761 (patch)
tree263d19417534ff4a07340482180cc67fb725e5e6
parent10db3806f2b3b0cb2b62125fb194ca2164ecdd6e (diff)
downloadhdf5-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)
-rw-r--r--c++/src/H5DataSet.cpp2
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);