aboutsummaryrefslogtreecommitdiff
path: root/scripts/alternate-stream
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/alternate-stream')
-rwxr-xr-xscripts/alternate-stream4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/alternate-stream b/scripts/alternate-stream
index 044edb24..ea8c8750 100755
--- a/scripts/alternate-stream
+++ b/scripts/alternate-stream
@@ -20,9 +20,9 @@ while ( $line = <FH> ) {
}
if ( $alt == 0 ) {
- printf(OFH_ONE $line);
+ print(OFH_ONE $line);
} elsif ( $alt == 1 ) {
- printf(OFH_TWO $line);
+ print(OFH_TWO $line);
} else {
printf("Unhandled: '%s'\n", chomp($line));
}