summaryrefslogtreecommitdiffstats
path: root/c++/examples/h5tutr_crtgrpar.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-09-14 19:33:40 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-09-14 19:33:40 (GMT)
commit5cf381597dddc2f551a344a102a4975ea0d373af (patch)
tree8ebefabe80872042b441cfb34e740e6c44f5a8ea /c++/examples/h5tutr_crtgrpar.cpp
parenta6151aa4f29fcb85047112f436fa21fde8f0da7b (diff)
downloadhdf5-5cf381597dddc2f551a344a102a4975ea0d373af.zip
hdf5-5cf381597dddc2f551a344a102a4975ea0d373af.tar.gz
hdf5-5cf381597dddc2f551a344a102a4975ea0d373af.tar.bz2
Fixed incorrect calls
Description: Replaced the calls to the deprecated function printError with printErrorStack in examples. Platforms tested: Linux/32 2.6 (jam)
Diffstat (limited to 'c++/examples/h5tutr_crtgrpar.cpp')
-rw-r--r--c++/examples/h5tutr_crtgrpar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/examples/h5tutr_crtgrpar.cpp b/c++/examples/h5tutr_crtgrpar.cpp
index 93bd08d..3e175d6 100644
--- a/c++/examples/h5tutr_crtgrpar.cpp
+++ b/c++/examples/h5tutr_crtgrpar.cpp
@@ -68,14 +68,14 @@ int main(void)
// catch failure caused by the File operations
catch(FileIException error)
{
- error.printError();
+ error.printErrorStack();
return -1;
}
// catch failure caused by the Group operations
catch(GroupIException error)
{
- error.printError();
+ error.printErrorStack();
return -1;
}