diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-24 20:19:01 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-24 20:19:01 (GMT) |
commit | eaa30bb6489521ee6178fbe909fe62bab767d24a (patch) | |
tree | af85961ec7a04f1e2fbaa4daa5ac45c50d52b411 /src/H5Gstab.c | |
parent | 9005dfcdc281c692f1e3cafa1ec8fb8eece5b338 (diff) | |
download | hdf5-eaa30bb6489521ee6178fbe909fe62bab767d24a.zip hdf5-eaa30bb6489521ee6178fbe909fe62bab767d24a.tar.gz hdf5-eaa30bb6489521ee6178fbe909fe62bab767d24a.tar.bz2 |
[svn-r6433] Purpose:
Code/comment cleanup
Description:
Made more information about reference-counted strings private to the
H5RS package by trimming the typedef used in H5RSprivate.h and switching
from using macros for a couple of operations to using functions.
Updated copyright information for a few of these files.
Platforms tested:
Tested h5committest {arabica (fortran), eirene (fortran, C++)
modi4 (parallel, fortran)}
Diffstat (limited to 'src/H5Gstab.c')
-rw-r--r-- | src/H5Gstab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Gstab.c b/src/H5Gstab.c index cf2fa28..ff5e735 100644 --- a/src/H5Gstab.c +++ b/src/H5Gstab.c @@ -352,7 +352,7 @@ H5G_insert_name(H5G_entry_t *loc, H5G_entry_t *obj, const char *name) /* Modify the object's user path */ /* Get the raw string for the user path */ - loc_user_path=H5RS_GET_STR(loc->user_path_r); + loc_user_path=H5RS_get_str(loc->user_path_r); assert(loc_user_path); /* The location's user path already ends in a '/' separator */ @@ -379,7 +379,7 @@ H5G_insert_name(H5G_entry_t *loc, H5G_entry_t *obj, const char *name) /* Modify the object's canonical path */ /* Get the raw string for the canonical path */ - loc_canon_path=H5RS_GET_STR(loc->canon_path_r); + loc_canon_path=H5RS_get_str(loc->canon_path_r); assert(loc_canon_path); /* The location's canonical path already ends in a '/' separator */ |