diff options
Diffstat (limited to 'hl/src/H5LTparse.c')
-rw-r--r-- | hl/src/H5LTparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/src/H5LTparse.c b/hl/src/H5LTparse.c index 32258d0..e9d2dce 100644 --- a/hl/src/H5LTparse.c +++ b/hl/src/H5LTparse.c @@ -60,7 +60,7 @@ int csindex = -1; /*pointer to the top of compound stack*/ /*structure for array type information*/ struct arr_info { hsize_t dims[H5S_MAX_RANK]; /*size of each dimension, limited to 32 dimensions*/ - int ndims; /*number of dimensions*/ + unsigned ndims; /*number of dimensions*/ hbool_t is_dim; /*flag to lexer for dimension*/ }; /*stack for nested array type*/ @@ -873,7 +873,7 @@ case 60: break; case 61: #line 223 "H5LTparse.y" -{ int ndims = arr_stack[asindex].ndims; +{ unsigned ndims = arr_stack[asindex].ndims; arr_stack[asindex].dims[ndims] = (hsize_t)yylval.ival; arr_stack[asindex].ndims++; arr_stack[asindex].is_dim = 0; |