diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-10-02 05:17:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-10-02 05:17:05 (GMT) |
commit | c53e577d1485c4d3e1985c3b7fb38a67fa42ec3f (patch) | |
tree | 467e873c9c6ee9a8b3db2496ad431b71ae4593a5 | |
parent | 37ec6dc75e85ebd7f9fb9b32fe978e47ab3fe918 (diff) | |
download | hdf5-c53e577d1485c4d3e1985c3b7fb38a67fa42ec3f.zip hdf5-c53e577d1485c4d3e1985c3b7fb38a67fa42ec3f.tar.gz hdf5-c53e577d1485c4d3e1985c3b7fb38a67fa42ec3f.tar.bz2 |
[svn-r17583] Description:
Correct last minute typo. *sigh*
Tested on:
FreeBSD/32 6.3 (duty)
-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 87696d3..997eba2 100644 --- a/src/H5trace.c +++ b/src/H5trace.c @@ -669,8 +669,8 @@ H5_trace (const double *returning, const char *func, const char *type, ...) H5F_file_space_type_t fs_type = va_arg(ap, H5F_file_space_type_t); /*lint !e64 Type mismatch not really occuring */ switch(fs_type) { - case H5F_FILE_SPACE_ALL_DEFAULT: - fprintf(out, "H5F_FILE_SPACE_ALL_DEFAULT"); + case H5F_FILE_SPACE_DEFAULT: + fprintf(out, "H5F_FILE_SPACE_DEFAULT"); break; case H5F_FILE_SPACE_ALL_PERSIST: fprintf(out, "H5F_FILE_SPACE_ALL_PERSIST"); |