diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2013-10-10 21:57:04 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2013-10-10 21:57:04 (GMT) |
commit | 06aa7b6641ec24acfc9810f50d06b526a0eeef7d (patch) | |
tree | 7d731da908173b6d4d027d1e006ff4d325448758 /src/H5Gint.c | |
parent | 52412564af8656ac8871f5e5b1f3493453e2c4db (diff) | |
download | hdf5-06aa7b6641ec24acfc9810f50d06b526a0eeef7d.zip hdf5-06aa7b6641ec24acfc9810f50d06b526a0eeef7d.tar.gz hdf5-06aa7b6641ec24acfc9810f50d06b526a0eeef7d.tar.bz2 |
[svn-r24285] Eliminate several "passing argument ... with different width due to prototype" warnings by casting constants to size_t where expected by string functions.
Tested on jam, koala,ostrich and platypus with h5committest.
Diffstat (limited to 'src/H5Gint.c')
-rw-r--r-- | src/H5Gint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gint.c b/src/H5Gint.c index fe8b995..6f42cc2 100644 --- a/src/H5Gint.c +++ b/src/H5Gint.c @@ -992,7 +992,7 @@ H5G_visit_cb(const H5O_link_t *lnk, void *_udata) /* Add the path separator to the current path */ HDassert(udata->path[udata->curr_path_len] == '\0'); - HDstrncpy(&(udata->path[udata->curr_path_len]), "/", 2); + HDstrncpy(&(udata->path[udata->curr_path_len]), "/", (size_t)2); udata->curr_path_len++; /* Attempt to get the link info for this group */ |