Addressed an issue in check_vars when -funsigned-chars

This commit is contained in:
Ward Fisher 2015-12-22 13:10:09 -07:00
parent 60fc0f1181
commit 92d374cbad
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
# br s -f test_get.c -l 1002 -c 'i == 11 && j == 2' # br s -f test_get.c -l 1002 -c 'i == 11 && j == 2'
# br s -f test_get.c -l 1019 -c 'i == 11' # br s -f test_get.c -l 1019 -c 'i == 11'
br s -f test_read.c -l 876 -c 'i == 6' br s -f util.c -l 964

View File

@ -922,7 +922,7 @@ check_vars(int ncid)
int err; /* status */ int err; /* status */
int i; int i;
size_t j; size_t j;
char text; signed char text;
double value; double value;
nc_type datatype; nc_type datatype;
int ndims; int ndims;