diff options
author | Gisle Aas <gisle@aas.no> | 2005-11-13 18:32:14 -0800 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-11-14 10:13:41 +0000 |
commit | 672ac9460f4d847752c940ba0d1cf6f86ba3d354 (patch) | |
tree | 48edccfeb9686a85a6694695310d739174f5f7f2 /ext/Storable | |
parent | 7581d28c2d4dcb4f3b408247518e6164f6b89764 (diff) | |
download | perl-672ac9460f4d847752c940ba0d1cf6f86ba3d354.tar.gz |
Missing ; in Storable.xs
Message-ID: <lrhdafy0y9.fsf_-_@caliper.activestate.com>
p4raw-id: //depot/perl@26122
Diffstat (limited to 'ext/Storable')
-rw-r--r-- | ext/Storable/Storable.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Storable/Storable.xs b/ext/Storable/Storable.xs index 537e4644e9..c63087d2cf 100644 --- a/ext/Storable/Storable.xs +++ b/ext/Storable/Storable.xs @@ -3099,7 +3099,7 @@ static int store_hook( #else tag = *svh; #endif - ary[i] = tag + ary[i] = tag; TRACEME(("listed object %d at 0x%"UVxf" is tag #%"UVuf, i-1, PTR2UV(xsv), PTR2UV(tag))); } |