diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-23 12:54:50 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-08-23 12:54:50 (GMT) |
commit | f7db09fb3d01fec4a8576b80069bee66e3403d2e (patch) | |
tree | 115d2a201c90ad1d31015d96e1667f79cc325d6e /src | |
parent | 2f47d558d12dcf7f4ac8b8300ecbfe09fa7a6c2f (diff) | |
download | hdf5-f7db09fb3d01fec4a8576b80069bee66e3403d2e.zip hdf5-f7db09fb3d01fec4a8576b80069bee66e3403d2e.tar.gz hdf5-f7db09fb3d01fec4a8576b80069bee66e3403d2e.tar.bz2 |
[svn-r14101] Description:
Change definition of H5E_walk1_t compatibility type to match the H5E_walk_t
type in the 1.6.x library.
Tested on:
Mac OS X/32 10.4.10 (amazon)
Too minor to require commit test
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Epublic.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Epublic.h b/src/H5Epublic.h index 2ad7a06..e690eaa 100644 --- a/src/H5Epublic.h +++ b/src/H5Epublic.h @@ -205,8 +205,7 @@ typedef struct H5E_error1_t { } H5E_error1_t; /* Error stack traversal callback function pointers */ -typedef herr_t (*H5E_walk1_t)(unsigned n, const H5E_error1_t *err_desc, - void *client_data); +typedef herr_t (*H5E_walk1_t)(int n, H5E_error1_t *err_desc, void *client_data); typedef herr_t (*H5E_auto1_t)(void *client_data); /* Function prototypes */ |