diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-09-30 00:02:13 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-09-30 00:02:13 (GMT) |
commit | 7c7bedb1ad91b4d0da2a8de0b0fd0a45cb934699 (patch) | |
tree | 59fa2c71cd354680db45abdbec59e976d30b5d7d /src/H5Shyper.c | |
parent | 72cf03cdbdce7b7bdfcac89c644129ca8ec39463 (diff) | |
download | hdf5-7c7bedb1ad91b4d0da2a8de0b0fd0a45cb934699.zip hdf5-7c7bedb1ad91b4d0da2a8de0b0fd0a45cb934699.tar.gz hdf5-7c7bedb1ad91b4d0da2a8de0b0fd0a45cb934699.tar.bz2 |
[svn-r1695] Fixed various compiler warnings..
Diffstat (limited to 'src/H5Shyper.c')
-rw-r--r-- | src/H5Shyper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Shyper.c b/src/H5Shyper.c index f56f3fa..14d36de 100644 --- a/src/H5Shyper.c +++ b/src/H5Shyper.c @@ -2975,7 +2975,7 @@ H5S_hyper_select_contiguous(const H5S_t *space) */ ret_value=TRUE; /* assume true and reset if the dimensions don't match */ for(i=1; i<rank; i++) { - if(((node->end[i]-node->start[i])+1)!=space->extent.u.simple.size[i]) { + if(((node->end[i]-node->start[i])+1)!=(hssize_t)space->extent.u.simple.size[i]) { ret_value=FALSE; break; } /* end if */ |