summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-27 11:36:40 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-27 11:36:40 +0000
commit0222aa7dc291d283102ca6659c13703653b531c6 (patch)
tree752f28ac8c28a74b18cd6d57e3a5f34dddc5e96b /ext
parenteb3f6d219982f981ba1ce81b67a9b95bd33a6196 (diff)
downloadperl-0222aa7dc291d283102ca6659c13703653b531c6.tar.gz
"lose the looses", from Abhijit Menon-Sen.
p4raw-id: //depot/perl@10979
Diffstat (limited to 'ext')
-rw-r--r--ext/B/B/Assembler.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/B/B/Assembler.pm b/ext/B/B/Assembler.pm
index 5e798ce485..e573cefc89 100644
--- a/ext/B/B/Assembler.pm
+++ b/ext/B/B/Assembler.pm
@@ -55,7 +55,7 @@ sub B::Asmdata::PUT_U8 {
sub B::Asmdata::PUT_U16 { pack("S", $_[0]) }
sub B::Asmdata::PUT_U32 { pack("L", $_[0]) }
sub B::Asmdata::PUT_I32 { pack("L", $_[0]) }
-sub B::Asmdata::PUT_NV { sprintf("%s\0", $_[0]) } # "%lf" looses precision and pack('d',...)
+sub B::Asmdata::PUT_NV { sprintf("%s\0", $_[0]) } # "%lf" loses precision and pack('d',...)
# may not even be portable between compilers
sub B::Asmdata::PUT_objindex { pack("L", $_[0]) } # could allow names here
sub B::Asmdata::PUT_svindex { &B::Asmdata::PUT_objindex }