diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-09-27 16:09:41 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-09-27 16:09:41 (GMT) |
commit | eaaa292603f3fba8e59e120e872138246b2c1b04 (patch) | |
tree | 18782e2b3c1d1519087666a1566fe9ed4882aa88 /tools/h5repart.c | |
parent | b4dbf55fbefa45eeeceea2db8fa98570292ac098 (diff) | |
download | hdf5-eaaa292603f3fba8e59e120e872138246b2c1b04.zip hdf5-eaaa292603f3fba8e59e120e872138246b2c1b04.tar.gz hdf5-eaaa292603f3fba8e59e120e872138246b2c1b04.tar.bz2 |
[svn-r1667] same fixes from the release branch were done here.
just casts with the parameters for the isdigit and isprint functions
Diffstat (limited to 'tools/h5repart.c')
-rw-r--r-- | tools/h5repart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5repart.c b/tools/h5repart.c index 6f6f2df..0a89143 100644 --- a/tools/h5repart.c +++ b/tools/h5repart.c @@ -105,7 +105,7 @@ get_size (const char *progname, int *argno, int argc, char *argv[]) off_t retval=-1; char *suffix; - if (isdigit (argv[*argno][2])) { + if (isdigit ((int)(argv[*argno][2]))) { retval = strtol (argv[*argno]+2, &suffix, 10); (*argno)++; } else if (argv[*argno][2] || *argno+1>=argc) { |