From 9b4ce4510657e9c151532a1ea47912f9083193d7 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 10 Jan 2001 09:57:39 -0500 Subject: [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... --- tools/h5dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v0.12