[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...
This commit is contained in:
Quincey Koziol 2001-01-10 09:57:39 -05:00
parent cd864ac9d3
commit 9b4ce45106

View File

@ -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;