summaryrefslogtreecommitdiffstats
path: root/src/H5Einit.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2013-07-11 13:44:08 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2013-07-11 13:44:08 (GMT)
commitf772c1110e4cc158be91bdc1a5ef13e5ed596d15 (patch)
tree1ea9b2e9f9a57f956486ccc0d5a5cf8ffa3a1b8c /src/H5Einit.h
parent4aae26caf044455c2da76a7209ddce388ff13c7e (diff)
downloadhdf5-f772c1110e4cc158be91bdc1a5ef13e5ed596d15.zip
hdf5-f772c1110e4cc158be91bdc1a5ef13e5ed596d15.tar.gz
hdf5-f772c1110e4cc158be91bdc1a5ef13e5ed596d15.tar.bz2
[svn-r23887] add the VOL error code to H5err.txt
rerun reconfigure. All the other changes must be due to different autotools versions used before.
Diffstat (limited to 'src/H5Einit.h')
-rw-r--r--src/H5Einit.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Einit.h b/src/H5Einit.h
index 6ab28bb..75c0b70 100644
--- a/src/H5Einit.h
+++ b/src/H5Einit.h
@@ -34,6 +34,11 @@ if((msg = H5E_create_msg(cls, H5E_MAJOR, "File accessibilty"))==NULL)
HGOTO_ERROR(H5E_ERROR, H5E_CANTINIT, FAIL, "error message initialization failed")
if((H5E_FILE_g = H5I_register(H5I_ERROR_MSG, msg, FALSE))<0)
HGOTO_ERROR(H5E_ERROR, H5E_CANTREGISTER, FAIL, "can't register error message")
+assert(H5E_VOL_g==(-1));
+if((msg = H5E_create_msg(cls, H5E_MAJOR, "Virtual Object Layer"))==NULL)
+ HGOTO_ERROR(H5E_ERROR, H5E_CANTINIT, FAIL, "error message initialization failed")
+if((H5E_VOL_g = H5I_register(H5I_ERROR_MSG, msg, FALSE))<0)
+ HGOTO_ERROR(H5E_ERROR, H5E_CANTREGISTER, FAIL, "can't register error message")
assert(H5E_SOHM_g==(-1));
if((msg = H5E_create_msg(cls, H5E_MAJOR, "Shared Object Header Messages"))==NULL)
HGOTO_ERROR(H5E_ERROR, H5E_CANTINIT, FAIL, "error message initialization failed")
@@ -54,11 +59,6 @@ if((msg = H5E_create_msg(cls, H5E_MAJOR, "Virtual File Layer"))==NULL)
HGOTO_ERROR(H5E_ERROR, H5E_CANTINIT, FAIL, "error message initialization failed")
if((H5E_VFL_g = H5I_register(H5I_ERROR_MSG, msg, FALSE))<0)
HGOTO_ERROR(H5E_ERROR, H5E_CANTREGISTER, FAIL, "can't register error message")
-assert(H5E_VOL_g==(-1));
-if((msg = H5E_create_msg(cls, H5E_MAJOR, "Virtual Object Layer"))==NULL)
- HGOTO_ERROR(H5E_ERROR, H5E_CANTINIT, FAIL, "error message initialization failed")
-if((H5E_VOL_g = H5I_register(H5I_ERROR_MSG, msg, FALSE))<0)
- HGOTO_ERROR(H5E_ERROR, H5E_CANTREGISTER, FAIL, "can't register error message")
assert(H5E_INTERNAL_g==(-1));
if((msg = H5E_create_msg(cls, H5E_MAJOR, "Internal error (too specific to document in detail)"))==NULL)
HGOTO_ERROR(H5E_ERROR, H5E_CANTINIT, FAIL, "error message initialization failed")