diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2009-04-21 22:13:44 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2009-04-21 22:13:44 (GMT) |
commit | a84d58f7331449027fedf5aa32f0996bbb4e33d4 (patch) | |
tree | d46be1777480dcb163b2939bbb95e564ac1b82ea | |
parent | c1ddf0955124c8cd315a81986229ce4d63f297a9 (diff) | |
download | hdf5-a84d58f7331449027fedf5aa32f0996bbb4e33d4.zip hdf5-a84d58f7331449027fedf5aa32f0996bbb4e33d4.tar.gz hdf5-a84d58f7331449027fedf5aa32f0996bbb4e33d4.tar.bz2 |
[svn-r16824] Added some comment for previous checkin.
Tested on jam - simple change.
-rw-r--r-- | src/H5Eint.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Eint.c b/src/H5Eint.c index 670377e..52f8aac 100644 --- a/src/H5Eint.c +++ b/src/H5Eint.c @@ -362,7 +362,8 @@ H5E_walk2_cb(unsigned n, const H5E_error2_t *err_desc, void *client_data) if(min_ptr->msg) min_str = min_ptr->msg; - /* Get error class info */ + /* Get error class info. Don't use the class of the major or minor error because + * they might be different. */ cls_ptr = (H5E_cls_t *)H5I_object_verify(err_desc->cls_id, H5I_ERROR_CLASS); /* Print error class header if new class */ |