diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-01-10 14:57:39 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-01-10 14:57:39 (GMT) |
commit | 9b4ce4510657e9c151532a1ea47912f9083193d7 (patch) | |
tree | 462c47f7bb3c087d6ec89a2b75c12cc47bd28a0d /tools | |
parent | cd864ac9d36aad7c3d54a5a586fa045a2e880a2f (diff) | |
download | hdf5-9b4ce4510657e9c151532a1ea47912f9083193d7.zip hdf5-9b4ce4510657e9c151532a1ea47912f9083193d7.tar.gz hdf5-9b4ce4510657e9c151532a1ea47912f9083193d7.tar.bz2 |
[svn-r3257] Purpose:
Bug fix
Description:
Compiler on sangamon (HP/UX 10.20) is having problems with the statement
"#ifdef 0".
Solution:
Changed statement to "#if 0" instead.
Platforms tested:
Eyeballed...
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c index ae711a8..d6f3012 100644 --- a/tools/h5dump.c +++ b/tools/h5dump.c @@ -1713,7 +1713,7 @@ main(int argc, const char *argv[]) exit(EXIT_FAILURE); } break; -#ifdef 0 +#if 0 case 'x': /* select XML output */ doxml = TRUE; |