summaryrefslogtreecommitdiffstats
path: root/src/H5C2journal.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2008-02-26 18:25:05 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2008-02-26 18:25:05 (GMT)
commit3d9dd9652ac7c6aa533bc8ab0c685730814e7b5c (patch)
tree5b9ad41eee0322106972b63d55a54840c2de7644 /src/H5C2journal.c
parenta5419a1ca358c2723d42522839c5a4a208d11ce3 (diff)
downloadhdf5-3d9dd9652ac7c6aa533bc8ab0c685730814e7b5c.zip
hdf5-3d9dd9652ac7c6aa533bc8ab0c685730814e7b5c.tar.gz
hdf5-3d9dd9652ac7c6aa533bc8ab0c685730814e7b5c.tar.bz2
[svn-r14682] purpose:
bug fix. Description: Functions H5O_mdj_conf_decode and H5O_mdj_conf_debug had the wrong function names in its FUNC_ENTER_NOAPI_NOINIT() line. This caused linew (SunOS10) to fail linking as it was looking for those mistyped function names for its own module. Solution: Fixed the typo name. Tested: It took way too long to run make check because cache2 ran for an hour in linew and still not done. At least, all three machines could build the binary now.
Diffstat (limited to 'src/H5C2journal.c')
-rw-r--r--src/H5C2journal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5C2journal.c b/src/H5C2journal.c
index 515cd61..32afbf7 100644
--- a/src/H5C2journal.c
+++ b/src/H5C2journal.c
@@ -139,7 +139,7 @@ H5O_mdj_conf_decode(H5F_t *f,
H5O_mdj_conf_t *mesg; /* Native message */
void *ret_value; /* Return value */
- FUNC_ENTER_NOAPI_NOINIT(H5O_btreek_decode)
+ FUNC_ENTER_NOAPI_NOINIT(H5O_mdj_conf_decode)
HDfprintf(stdout, "%s: entering.\n", fcn_name);
@@ -484,7 +484,7 @@ H5O_mdj_conf_debug(H5F_t UNUSED *f,
const char * fcn_name = "H5O_mdj_conf_debug()";
const H5O_mdj_conf_t *mesg = (const H5O_mdj_conf_t *)_mesg;
- FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5O_btreek_debug)
+ FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5O_mdj_conf_debug)
HDfprintf(stdout, "%s: entering.\n", fcn_name);