diff options
Diffstat (limited to 'src/H5Ofill.c')
-rw-r--r-- | src/H5Ofill.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Ofill.c b/src/H5Ofill.c index e8ccd79..1d8ef69 100644 --- a/src/H5Ofill.c +++ b/src/H5Ofill.c @@ -23,7 +23,7 @@ static void *H5O_fill_copy(const void *_mesg, void *_dest); static size_t H5O_fill_size(H5F_t *f, const void *_mesg); static herr_t H5O_fill_reset(void *_mesg); static herr_t H5O_fill_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_FILL[1] = {{ @@ -42,7 +42,7 @@ const H5O_class_t H5O_FILL[1] = {{ }}; /* Interface initialization */ -static intn interface_initialize_g = 0; +static int interface_initialize_g = 0; #define INTERFACE_INIT NULL @@ -265,7 +265,7 @@ H5O_fill_reset(void *_mesg) */ static herr_t H5O_fill_debug(H5F_t UNUSED *f, const void *_mesg, FILE *stream, - intn indent, intn fwidth) + int indent, int fwidth) { const H5O_fill_t *mesg = (const H5O_fill_t *)_mesg; |