summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-01-22 19:57:48 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-01-22 19:57:48 (GMT)
commitdec0c95436846315e677c69fdb8c44c0dd0a8c8b (patch)
tree1f63e3d112762453aac71cf36e4564f50d40efa3 /src/H5.c
parenta0ee2c57e934c5ff2269e345238a6ee019f6c294 (diff)
downloadhdf5-dec0c95436846315e677c69fdb8c44c0dd0a8c8b.zip
hdf5-dec0c95436846315e677c69fdb8c44c0dd0a8c8b.tar.gz
hdf5-dec0c95436846315e677c69fdb8c44c0dd0a8c8b.tar.bz2
[svn-r165] Changes since 19980122
---------------------- ./src/H5.c ./src/H5B.c ./src/H5Bprivate.h Changed `new' to something else in 6 places for Fabio. ./src/H5T.c ./src/H5Tconv.c Beginning to work on compound data type conversion. Don't look yet :-)
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5.c b/src/H5.c
index c810f99..e409489 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -121,17 +121,17 @@ herr_t
H5_add_exit(void (*func) (void))
{
herr_t ret_value = SUCCEED;
- H5_exit_t *new;
+ H5_exit_t *new_exit;
FUNC_ENTER_INIT(H5_add_exit, NULL, FAIL);
assert(func);
- new = H5MM_xcalloc(1, sizeof(H5_exit_t));
+ new_exit = H5MM_xcalloc(1, sizeof(H5_exit_t));
- new->func = func;
- new->next = lib_exit_head;
- lib_exit_head = new;
+ new_exit->func = func;
+ new_exit->next = lib_exit_head;
+ lib_exit_head = new_exit;
FUNC_LEAVE(ret_value);
} /* end H5_add_exit() */