summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-09-30 14:27:22 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-09-30 14:27:22 (GMT)
commit0e1713d4eba09f6c4c8851f42120e97fb0d82eda (patch)
treea26e89a292f5a41c99d53a2d336195bf9d1cdf93
parent38accb7290402a85d1ac5831f685b5674ec9f48f (diff)
downloadhdf5-0e1713d4eba09f6c4c8851f42120e97fb0d82eda.zip
hdf5-0e1713d4eba09f6c4c8851f42120e97fb0d82eda.tar.gz
hdf5-0e1713d4eba09f6c4c8851f42120e97fb0d82eda.tar.bz2
[svn-r25635] fix merge bug for loaded vol plugins.
-rw-r--r--src/H5PLprivate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5PLprivate.h b/src/H5PLprivate.h
index 61fd0af..76eb428 100644
--- a/src/H5PLprivate.h
+++ b/src/H5PLprivate.h
@@ -29,7 +29,8 @@
typedef enum H5PL_type_t {
H5PL_TYPE_ERROR = -1, /*error */
H5PL_TYPE_FILTER = 0, /*filter */
- H5PL_TYPE_NONE = 1 /*this must be last! */
+ H5PL_TYPE_VOL = 1, /*vol plugin */
+ H5PL_TYPE_NONE = 2 /*this must be last! */
} H5PL_type_t;
/* Private headers needed by this file */