mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-18 15:15:56 +08:00
[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
This commit is contained in:
parent
c7f2d5c41e
commit
f3d0c37f91
@ -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};
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user