summarylogtreecommitdiffstats
path: root/hdf5.patch
diff options
context:
space:
mode:
Diffstat (limited to 'hdf5.patch')
-rw-r--r--hdf5.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/hdf5.patch b/hdf5.patch
deleted file mode 100644
index 3a518475021e..000000000000
--- a/hdf5.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- src/hdf5_drv/H5FDsilo.c 2021-09-11 01:22:52.000000000 +0300
-+++ src/hdf5_drv/H5FDsilo.c 2021-11-25 00:37:06.685422949 +0200
-@@ -252,13 +252,13 @@
- snprintf(msg, sizeof(msg), Msg "(errno=%d, \"%s\")", \
- Errno, strerror(Errno)); \
- ret_value = Ret; \
-- H5Epush_ret(Func, Cls, Maj, Min, msg, Ret) \
-+ H5Epush_ret(Func, Cls, Maj, Min, msg, Ret); \
- }
- #else
- #define H5E_PUSH_HELPER(Func,Cls,Maj,Min,Msg,Ret,Errno) \
- { \
- ret_value = Ret; \
-- H5Epush_ret(Func, Cls, Maj, Min, Msg, Ret) \
-+ H5Epush_ret(Func, Cls, Maj, Min, Msg, Ret); \
- }
- #endif
-
-@@ -1355,7 +1355,7 @@
- assert(sizeof(hsize_t)<=8);
- memcpy(p, &file->block_size, sizeof(hsize_t));
- if (H5Tconvert(H5T_NATIVE_HSIZE, H5T_STD_U64LE, 1, buf+8, NULL, H5P_DEFAULT)<0)
-- H5Epush_ret(func, H5E_ERR_CLS, H5E_DATATYPE, H5E_CANTCONVERT, "can't convert superblock info", -1)
-+ H5Epush_ret(func, H5E_ERR_CLS, H5E_DATATYPE, H5E_CANTCONVERT, "can't convert superblock info", -1);
-
- return 0;
- }
-@@ -1383,14 +1383,14 @@
-
- /* Make sure the name/version number is correct */
- if (strcmp(name, "LLNLsilo"))
-- H5Epush_ret(func, H5E_ERR_CLS, H5E_FILE, H5E_BADVALUE, "invalid silo superblock", -1)
-+ H5Epush_ret(func, H5E_ERR_CLS, H5E_FILE, H5E_BADVALUE, "invalid silo superblock", -1);
-
- buf += 8;
- /* Decode block size */
- assert(sizeof(hsize_t)<=8);
- memcpy(x, buf, 8);
- if (H5Tconvert(H5T_STD_U64LE, H5T_NATIVE_HSIZE, 1, x, NULL, H5P_DEFAULT)<0)
-- H5Epush_ret(func, H5E_ERR_CLS, H5E_DATATYPE, H5E_CANTCONVERT, "can't convert superblock info", -1)
-+ H5Epush_ret(func, H5E_ERR_CLS, H5E_DATATYPE, H5E_CANTCONVERT, "can't convert superblock info", -1);
- ap = (hsize_t*)x;
- /*file->block_size = *ap; ignore stored value for now */
-