summaryrefslogtreecommitdiffstats
path: root/bin/make_err
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-02-09 21:30:06 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-02-09 21:30:06 (GMT)
commitf3d0c37f910e0b5e9cd4cd5fc5fa3885f0c3904d (patch)
treee63a8b0d4956cda24c0b6078c16e90357fa0c545 /bin/make_err
parentc7f2d5c41e387a01922a85550a31c8033e6b2c3d (diff)
downloadhdf5-f3d0c37f910e0b5e9cd4cd5fc5fa3885f0c3904d.zip
hdf5-f3d0c37f910e0b5e9cd4cd5fc5fa3885f0c3904d.tar.gz
hdf5-f3d0c37f910e0b5e9cd4cd5fc5fa3885f0c3904d.tar.bz2
[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
Diffstat (limited to 'bin/make_err')
-rwxr-xr-xbin/make_err8
1 files 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};
}
}