From f3d0c37f910e0b5e9cd4cd5fc5fa3885f0c3904d Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 9 Feb 2005 16:30:06 -0500 Subject: [svn-r9970] Purpose: Bug fix Description: Correct formatting error which would run some macros together if the length of the error got too large. Solution: Throw in some extra whitespace Platforms tested: FreeBSD 4.11 (sleipnir) w/parallel Too minor to require h5committest --- bin/make_err | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/make_err b/bin/make_err index 863cc97..ede568a 100755 --- a/bin/make_err +++ b/bin/make_err @@ -178,10 +178,10 @@ sub create_public ($) { print HEADER "/* Major error codes */\n"; print HEADER "/*********************/\n\n"; foreach $name (keys %major) { - printf HEADER "#define %-20s(H5OPEN %s_g)\n",$name,$name; + printf HEADER "#define %-20s (H5OPEN %s_g)\n",$name,$name; } foreach $name (keys %major) { - printf HEADER "H5_DLLVAR hid_t %-20s/* %s */\n","${name}_g;",$major{$name}; + printf HEADER "H5_DLLVAR hid_t %-20s /* %s */\n","${name}_g;",$major{$name}; } # Iterate over all the minor error sections @@ -193,10 +193,10 @@ sub create_public ($) { # Iterate over all the minor errors in each section for $name ( @{$section_list{$sect_name}}) { - printf HEADER "#define %-20s(H5OPEN %s_g)\n",$name,$name; + printf HEADER "#define %-20s (H5OPEN %s_g)\n",$name,$name; } for $name ( @{$section_list{$sect_name}}) { - printf HEADER "H5_DLLVAR hid_t %-20s/* %s */\n","${name}_g;",$minor{$name}; + printf HEADER "H5_DLLVAR hid_t %-20s /* %s */\n","${name}_g;",$minor{$name}; } } -- cgit v0.12