summaryrefslogtreecommitdiffstats
path: root/tools/lib
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-04-25 23:49:04 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:37:20 (GMT)
commit3efed9c1110521a8361603436984a677f2bbea29 (patch)
tree5b676c2e131f18603b23dc8c67b142ded45ae3f9 /tools/lib
parent97431e256b70a393605d515f186e914a044a3fee (diff)
downloadhdf5-3efed9c1110521a8361603436984a677f2bbea29.zip
hdf5-3efed9c1110521a8361603436984a677f2bbea29.tar.gz
hdf5-3efed9c1110521a8361603436984a677f2bbea29.tar.bz2
Fixes for warnings in the tools code.
Diffstat (limited to 'tools/lib')
-rw-r--r--tools/lib/h5diff.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/lib/h5diff.h b/tools/lib/h5diff.h
index 8fe9d86..37eb775 100644
--- a/tools/lib/h5diff.h
+++ b/tools/lib/h5diff.h
@@ -53,9 +53,9 @@ typedef struct {
*/
/* linked list to keep exclude path list */
struct exclude_path_list {
- char *obj_path;
- h5trav_type_t obj_type;
- struct exclude_path_list * next;
+ const char *obj_path;
+ h5trav_type_t obj_type;
+ struct exclude_path_list *next;
};
/* Enumeration value for keeping track of whether an error occurred or differences were found */