summaryrefslogtreecommitdiffstats
path: root/src/H5PLpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5PLpath.c')
-rw-r--r--src/H5PLpath.c62
1 files changed, 31 insertions, 31 deletions
diff --git a/src/H5PLpath.c b/src/H5PLpath.c
index 965479f..4cfa83e 100644
--- a/src/H5PLpath.c
+++ b/src/H5PLpath.c
@@ -108,8 +108,8 @@ H5PL__insert_at(const char *path, unsigned int idx)
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(path);
- HDassert(HDstrlen(path));
+ assert(path);
+ assert(HDstrlen(path));
/* Expand the table if it is full */
if (H5PL_num_paths_g == H5PL_path_capacity_g)
@@ -158,7 +158,7 @@ H5PL__make_space_at(unsigned int idx)
FUNC_ENTER_PACKAGE_NOERR
/* Check args - Just assert on package functions */
- HDassert(idx < H5PL_path_capacity_g);
+ assert(idx < H5PL_path_capacity_g);
/* Copy the paths back to make a space */
for (u = H5PL_num_paths_g; u > idx; u--)
@@ -189,8 +189,8 @@ H5PL__replace_at(const char *path, unsigned int idx)
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(path);
- HDassert(HDstrlen(path));
+ assert(path);
+ assert(HDstrlen(path));
/* Check that the table entry is in use */
if (!H5PL_paths_g[idx])
@@ -386,8 +386,8 @@ H5PL__append_path(const char *path)
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(path);
- HDassert(HDstrlen(path));
+ assert(path);
+ assert(HDstrlen(path));
/* Insert the path at the end of the table */
if (H5PL__insert_at(path, H5PL_num_paths_g) < 0)
@@ -414,8 +414,8 @@ H5PL__prepend_path(const char *path)
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(path);
- HDassert(HDstrlen(path));
+ assert(path);
+ assert(HDstrlen(path));
/* Insert the path at the beginning of the table */
if (H5PL__insert_at(path, 0) < 0)
@@ -442,9 +442,9 @@ H5PL__replace_path(const char *path, unsigned int idx)
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(path);
- HDassert(HDstrlen(path));
- HDassert(idx < H5PL_path_capacity_g);
+ assert(path);
+ assert(HDstrlen(path));
+ assert(idx < H5PL_path_capacity_g);
/* Insert the path at the requested index */
if (H5PL__replace_at(path, idx) < 0)
@@ -472,9 +472,9 @@ H5PL__insert_path(const char *path, unsigned int idx)
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(path);
- HDassert(HDstrlen(path));
- HDassert(idx < H5PL_path_capacity_g);
+ assert(path);
+ assert(HDstrlen(path));
+ assert(idx < H5PL_path_capacity_g);
/* Insert the path at the requested index */
if (H5PL__insert_at(path, idx) < 0)
@@ -503,7 +503,7 @@ H5PL__remove_path(unsigned int idx)
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(idx < H5PL_path_capacity_g);
+ assert(idx < H5PL_path_capacity_g);
/* Check if the path at that index is set */
if (!H5PL_paths_g[idx])
@@ -612,8 +612,8 @@ H5PL__path_table_iterate_process_path(const char *plugin_path, H5PL_iterate_type
FUNC_ENTER_PACKAGE
- HDassert(plugin_path);
- HDassert(iter_op);
+ assert(plugin_path);
+ assert(iter_op);
/* Open the directory - skip the path if the directory can't be opened */
if (!(dirp = HDopendir(plugin_path)))
@@ -704,8 +704,8 @@ H5PL__path_table_iterate_process_path(const char *plugin_path, H5PL_iterate_type
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(plugin_path);
- HDassert(iter_op);
+ assert(plugin_path);
+ assert(iter_op);
/* Specify a file mask. *.* = We want everything! -
* skip the path if the directory can't be opened */
@@ -788,9 +788,9 @@ H5PL__find_plugin_in_path_table(const H5PL_search_params_t *search_params, hbool
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(search_params);
- HDassert(found);
- HDassert(plugin_info);
+ assert(search_params);
+ assert(found);
+ assert(plugin_info);
/* Initialize output parameters */
*found = FALSE;
@@ -844,10 +844,10 @@ H5PL__find_plugin_in_path(const H5PL_search_params_t *search_params, hbool_t *fo
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(search_params);
- HDassert(found);
- HDassert(dir);
- HDassert(plugin_info);
+ assert(search_params);
+ assert(found);
+ assert(dir);
+ assert(plugin_info);
/* Initialize the found parameter */
*found = FALSE;
@@ -926,10 +926,10 @@ H5PL__find_plugin_in_path(const H5PL_search_params_t *search_params, hbool_t *fo
FUNC_ENTER_PACKAGE
/* Check args - Just assert on package functions */
- HDassert(search_params);
- HDassert(found);
- HDassert(dir);
- HDassert(plugin_info);
+ assert(search_params);
+ assert(found);
+ assert(dir);
+ assert(plugin_info);
/* Initialize the found parameter */
*found = FALSE;