diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-09 03:51:03 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-09 03:51:03 (GMT) |
commit | 25d1056dbff92a7662ee73c67596d24906530dbc (patch) | |
tree | d98bc79a6ffdcf85f4b1f375523991070505acb7 /hl/src/H5LTparse.y | |
parent | 6a18d20b406b2285fbf1d3f6c830b8147635597b (diff) | |
download | hdf5-25d1056dbff92a7662ee73c67596d24906530dbc.zip hdf5-25d1056dbff92a7662ee73c67596d24906530dbc.tar.gz hdf5-25d1056dbff92a7662ee73c67596d24906530dbc.tar.bz2 |
[svn-r12734] Description:
Clean up some compiler warnings.
Tested on:
FreeBSD/32 4.11 (sleipnir) w/threadsafe
Linux/32 2.4 (heping) w/FORTRAN & C++
Linux/64 2.4 (mir) w/enable-1.6-compat
Diffstat (limited to 'hl/src/H5LTparse.y')
-rw-r--r-- | hl/src/H5LTparse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/src/H5LTparse.y b/hl/src/H5LTparse.y index 49211fb..6e866c1 100644 --- a/hl/src/H5LTparse.y +++ b/hl/src/H5LTparse.y @@ -41,7 +41,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*/ @@ -220,7 +220,7 @@ dim_list : | dim_list dim ; dim : '[' { arr_stack[asindex].is_dim = 1; /*notice lexer of dimension size*/ } - dimsize { int ndims = arr_stack[asindex].ndims; + dimsize { 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; |