mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
[svn-r5526] Purpose:
Bug Fix Description: Still was calling the POSIX stuff "Raw". Solution: Changed name to POSIX instead of Raw... Platforms tested: Linux
This commit is contained in:
parent
6eb49711cb
commit
945e417faa
@ -138,7 +138,7 @@ sub create_excel_output_string {
|
||||
foreach my $procs (sort { $b <=> $a } keys(%results)) {
|
||||
$output_content .= "\n$procs Procs";
|
||||
$output_content .= "\n" . create_excel_output_header;
|
||||
$output_content .= "\n Raw";
|
||||
$output_content .= "\n POSIX";
|
||||
|
||||
foreach my $xfer (sort { $a <=> $b } keys(%{$results{$procs}})) {
|
||||
$output_content .= "\t$results{$procs}{$xfer}[0]{$t}";
|
||||
@ -230,7 +230,7 @@ sub create_ascii_output_string {
|
||||
$output_content .= "\n$procs Procs";
|
||||
$output_content .= "\n$output_header\n";
|
||||
$output_content .= "-" x length($output_header);
|
||||
$output_content .= "\n Raw |";
|
||||
$output_content .= "\n POSIX |";
|
||||
|
||||
foreach my $xfer (sort { $a <=> $b } keys(%{$results{$procs}})) {
|
||||
$output_content = sprintf("$output_content %-6s |",
|
||||
|
Loading…
Reference in New Issue
Block a user