diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-21 21:08:27 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-21 21:08:27 (GMT) |
commit | cdd4606430edbb9b322c1abd55b2a4cdff936088 (patch) | |
tree | a1bfe5c7d3027df3b9179958d426ef36143625b9 /fortran | |
parent | 6262a14f2e6f669f72e0212b4ce3654c9526f1dc (diff) | |
download | hdf5-cdd4606430edbb9b322c1abd55b2a4cdff936088.zip hdf5-cdd4606430edbb9b322c1abd55b2a4cdff936088.tar.gz hdf5-cdd4606430edbb9b322c1abd55b2a4cdff936088.tar.bz2 |
[svn-r14097] Description:
First real use of API versioning code, H5E routines switched to use
new API versioning scheme.
Tested on:
Mac OS X/32 10.4.10 (amazon)
FreeBSD/32 6.2 (duty)
FreeBSD/64 6.2 (liberty)
Linux/32 2.6 (kagiso)
Linux/64 2.6 (smirom)
Solaris/32 5.10 (linew)
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/src/H5Ef.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fortran/src/H5Ef.c b/fortran/src/H5Ef.c index 612e894..d3983af 100644 --- a/fortran/src/H5Ef.c +++ b/fortran/src/H5Ef.c @@ -70,7 +70,7 @@ nh5eprint_c1(_fcd name, int_f* namelen) file = fopen(c_name, "a"); if(!file) goto DONE; /* - * Call H5Eprint function. + * Call H5Eprint2 function. */ status = H5Eprint2(H5E_DEFAULT, file); if (status >=0 ) ret_val = 0; @@ -100,7 +100,7 @@ nh5eprint_c2() herr_t status; /* - * Call H5Eprint function. + * Call H5Eprint2 function. */ status = H5Eprint2(H5E_DEFAULT, NULL); if(status >= 0) ret_val = 0; @@ -192,9 +192,9 @@ nh5eset_auto_c(int_f* printflag) herr_t status = -1; if (*printflag == 1) - status = H5Eset_auto2(H5E_DEFAULT, (H5E_auto2_t)H5Eprint, stderr); - if (*printflag == 0) - status = H5Eset_auto2(H5E_DEFAULT, NULL,NULL); + status = H5Eset_auto2(H5E_DEFAULT, H5Eprint2, stderr); + else if (*printflag == 0) + status = H5Eset_auto2(H5E_DEFAULT, NULL, NULL); if (status >= 0) ret_val = 0; return ret_val; } |