diff options
Diffstat (limited to 'src/H5Oname.c')
-rw-r--r-- | src/H5Oname.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Oname.c b/src/H5Oname.c index c75cdd7..916b0a9 100644 --- a/src/H5Oname.c +++ b/src/H5Oname.c @@ -28,7 +28,7 @@ static void *H5O_name_copy(const void *_mesg, void *_dest); static size_t H5O_name_size(H5F_t *f, const void *_mesg); static herr_t H5O_name_reset(void *_mesg); static herr_t H5O_name_debug(H5F_t *f, const void *_mesg, FILE * stream, - intn indent, intn fwidth); + int indent, int fwidth); /* This message derives from H5O */ const H5O_class_t H5O_NAME[1] = {{ @@ -47,7 +47,7 @@ const H5O_class_t H5O_NAME[1] = {{ }}; /* Interface initialization */ -static intn interface_initialize_g = 0; +static int interface_initialize_g = 0; #define INTERFACE_INIT NULL @@ -251,7 +251,7 @@ H5O_name_reset(void *_mesg) */ static herr_t H5O_name_debug(H5F_t UNUSED *f, const void *_mesg, FILE *stream, - intn indent, intn fwidth) + int indent, int fwidth) { const H5O_name_t *mesg = (const H5O_name_t *)_mesg; |