summaryrefslogtreecommitdiffstats
path: root/hl/src/H5LTparse.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-10-09 03:51:03 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-10-09 03:51:03 (GMT)
commit25d1056dbff92a7662ee73c67596d24906530dbc (patch)
treed98bc79a6ffdcf85f4b1f375523991070505acb7 /hl/src/H5LTparse.c
parent6a18d20b406b2285fbf1d3f6c830b8147635597b (diff)
downloadhdf5-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.c')
-rw-r--r--hl/src/H5LTparse.c4
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;