summaryrefslogtreecommitdiffstats
path: root/src/H5T.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5T.c')
-rw-r--r--src/H5T.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/H5T.c b/src/H5T.c
index 7e85227..9cbf546 100644
--- a/src/H5T.c
+++ b/src/H5T.c
@@ -1503,9 +1503,9 @@ H5T_top_term_package(void)
if (H5DEBUG(T)) {
HDfprintf(H5DEBUG(T),
"H5T: conversion function "
- "0x%08lx failed to free private data for "
+ "0x%016zx failed to free private data for "
"%s (ignored)\n",
- (unsigned long)(path->conv.u.app_func), path->name);
+ (size_t)path->conv.u.app_func, path->name);
} /* end if */
#endif
H5E_clear_stack(NULL); /*ignore the error*/
@@ -1518,9 +1518,9 @@ H5T_top_term_package(void)
if (H5DEBUG(T)) {
HDfprintf(H5DEBUG(T),
"H5T: conversion function "
- "0x%08lx failed to free private data for "
+ "0x%016zx failed to free private data for "
"%s (ignored)\n",
- (unsigned long)(path->conv.u.lib_func), path->name);
+ (size_t)path->conv.u.lib_func, path->name);
} /* end if */
#endif
H5E_clear_stack(NULL); /*ignore the error*/
@@ -2632,9 +2632,9 @@ H5T__register(H5T_pers_t pers, const char *name, H5T_t *src, H5T_t *dst, H5T_con
#ifdef H5T_DEBUG
if (H5DEBUG(T))
HDfprintf(H5DEBUG(T),
- "H5T: conversion function 0x%08lx "
+ "H5T: conversion function 0x%016zx "
"failed to free private data for %s (ignored)\n",
- (unsigned long)(old_path->conv.u.app_func), old_path->name);
+ (size_t)old_path->conv.u.app_func, old_path->name);
#endif
} /* end if */
} /* end if */
@@ -2643,9 +2643,9 @@ H5T__register(H5T_pers_t pers, const char *name, H5T_t *src, H5T_t *dst, H5T_con
#ifdef H5T_DEBUG
if (H5DEBUG(T))
HDfprintf(H5DEBUG(T),
- "H5T: conversion function 0x%08lx "
+ "H5T: conversion function 0x%016zx "
"failed to free private data for %s (ignored)\n",
- (unsigned long)(old_path->conv.u.lib_func), old_path->name);
+ (size_t)old_path->conv.u.lib_func, old_path->name);
#endif
} /* end if */
(void)H5T_close_real(old_path->src);
@@ -2812,9 +2812,9 @@ H5T__unregister(H5T_pers_t pers, const char *name, H5T_t *src, H5T_t *dst, H5T_c
#ifdef H5T_DEBUG
if (H5DEBUG(T))
HDfprintf(H5DEBUG(T),
- "H5T: conversion function 0x%08lx failed "
+ "H5T: conversion function 0x%016zx failed "
"to free private data for %s (ignored)\n",
- (unsigned long)(path->conv.u.app_func), path->name);
+ (size_t)path->conv.u.app_func, path->name);
#endif
} /* end if */
} /* end if */
@@ -2823,9 +2823,9 @@ H5T__unregister(H5T_pers_t pers, const char *name, H5T_t *src, H5T_t *dst, H5T_c
#ifdef H5T_DEBUG
if (H5DEBUG(T))
HDfprintf(H5DEBUG(T),
- "H5T: conversion function 0x%08lx failed "
+ "H5T: conversion function 0x%016zx failed "
"to free private data for %s (ignored)\n",
- (unsigned long)(path->conv.u.lib_func), path->name);
+ (size_t)path->conv.u.lib_func, path->name);
#endif
} /* end if */
(void)H5T_close_real(path->src);
@@ -5220,8 +5220,8 @@ H5T__path_find_real(const H5T_t *src, const H5T_t *dst, const char *name, H5T_co
(size_t)0, NULL, NULL, H5CX_get_dxpl()) < 0) {
#ifdef H5T_DEBUG
if (H5DEBUG(T))
- HDfprintf(H5DEBUG(T), "H5T: conversion function 0x%08lx free failed for %s (ignored)\n",
- (unsigned long)(path->conv.u.app_func), path->name);
+ HDfprintf(H5DEBUG(T), "H5T: conversion function 0x%016zx free failed for %s (ignored)\n",
+ (size_t)path->conv.u.app_func, path->name);
#endif
H5E_clear_stack(NULL); /*ignore the failure*/
} /* end if */
@@ -5230,8 +5230,8 @@ H5T__path_find_real(const H5T_t *src, const H5T_t *dst, const char *name, H5T_co
(size_t)0, NULL, NULL) < 0) {
#ifdef H5T_DEBUG
if (H5DEBUG(T))
- HDfprintf(H5DEBUG(T), "H5T: conversion function 0x%08lx free failed for %s (ignored)\n",
- (unsigned long)(path->conv.u.lib_func), path->name);
+ HDfprintf(H5DEBUG(T), "H5T: conversion function 0x%016zx free failed for %s (ignored)\n",
+ (size_t)path->conv.u.lib_func, path->name);
#endif
H5E_clear_stack(NULL); /*ignore the failure*/
} /* end if */