diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-12-14 10:50:43 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-12-14 10:50:43 (GMT) |
commit | 2cb441c507dfbd4437ccf29e232a9b730e6e1003 (patch) | |
tree | 92bfce726bb40ed8b11bc34691d8f29e7da9626d /src/H5trace.c | |
parent | 7e4fb729137dff3851122be63beabfc03137be4a (diff) | |
download | hdf5-2cb441c507dfbd4437ccf29e232a9b730e6e1003.zip hdf5-2cb441c507dfbd4437ccf29e232a9b730e6e1003.tar.gz hdf5-2cb441c507dfbd4437ccf29e232a9b730e6e1003.tar.bz2 |
[svn-r28629] Minor normalization with revise_chunks.
Tested on:
Ubuntu 15.10 (Linux 4.2.0 x86_64) gcc 5.2.1
serial only
(these changes have been in revise_chunks for a long time)
Diffstat (limited to 'src/H5trace.c')
-rw-r--r-- | src/H5trace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5trace.c b/src/H5trace.c index 3b29cda..2fd75ac 100644 --- a/src/H5trace.c +++ b/src/H5trace.c @@ -268,8 +268,8 @@ H5_trace(const double *returning, const char *func, const char *type, ...) fprintf(out, "NULL"); } /* end if */ else { - hbool_t bool_var = va_arg(ap, hbool_t); /*lint !e732 Loss of sign not really occuring */ - + /* Can't pass hbool_t to va_arg() */ + hbool_t bool_var = (hbool_t)va_arg(ap, int); if(TRUE == bool_var) fprintf(out, "TRUE"); else if(!bool_var) |