summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-07-14 20:49:54 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-07-14 20:49:54 (GMT)
commit8b9bd8d3a408e6e396553ae9bbc3dbabb35f35a1 (patch)
tree0dc40a0f4ccd232fa7dfd29d6a924e30fb106114 /src
parentdd742ac4c6e271b7f649638ee309df488cfc7869 (diff)
downloadhdf5-8b9bd8d3a408e6e396553ae9bbc3dbabb35f35a1.zip
hdf5-8b9bd8d3a408e6e396553ae9bbc3dbabb35f35a1.tar.gz
hdf5-8b9bd8d3a408e6e396553ae9bbc3dbabb35f35a1.tar.bz2
[svn-r4211] Purpose:
Improvement Description: printed the library version stgring in the diagnostic output for easier version identification. Solution: Platforms tested: eirene (serial and mpich)
Diffstat (limited to 'src')
-rw-r--r--src/H5E.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5E.c b/src/H5E.c
index 1cdda01..69c362f 100644
--- a/src/H5E.c
+++ b/src/H5E.c
@@ -358,7 +358,7 @@ H5Eprint(FILE *stream)
/*NO TRACE*/
if (!stream) stream = stderr;
- fprintf (stream, "HDF5-DIAG: Error detected in ");
+ fprintf (stream, "HDF5-DIAG: Error detected in %s ", H5_lib_vers_info_g);
/* try show the process or thread id in multiple processes cases*/
#ifdef H5_HAVE_PARALLEL
{ int mpi_rank, mpi_initialized;