summaryrefslogtreecommitdiffstats
path: root/src/H5Epublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1999-10-23 00:36:04 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1999-10-23 00:36:04 (GMT)
commit1953487e125b5f309df1b4bd596dede2544a278f (patch)
tree1d575e0c6b35137ea10d10298208a0b9ff173667 /src/H5Epublic.h
parent69fc209302fcf4ddd14d993b1e1aab78830c473c (diff)
downloadhdf5-1953487e125b5f309df1b4bd596dede2544a278f.zip
hdf5-1953487e125b5f309df1b4bd596dede2544a278f.tar.gz
hdf5-1953487e125b5f309df1b4bd596dede2544a278f.tar.bz2
[svn-r1788] Converted all the VFL drivers except for the stdio and multi drivers back into
the "internal" HDF5 coding standard.
Diffstat (limited to 'src/H5Epublic.h')
-rw-r--r--src/H5Epublic.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5Epublic.h b/src/H5Epublic.h
index ce8af46..d3790e9 100644
--- a/src/H5Epublic.h
+++ b/src/H5Epublic.h
@@ -66,7 +66,7 @@
/* And goto a label after pushing error onto stack */
#define H5Epush_goto(func,maj,min,str,label) { \
H5Epush(__FILE__,func,__LINE__,maj,min,str); \
- goto (label); \
+ goto label; \
}
/*
@@ -172,6 +172,9 @@ typedef enum H5E_minor_t {
H5E_LINK, /*link count failure */
H5E_SLINK, /*symbolic link error */
+ /* Datatype conversion errors */
+ H5E_CANTCONVERT, /*Can't convert datatypes */
+
/* Parallel errors */
H5E_MPI /*some MPI function failed */
} H5E_minor_t;