1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

just a minor change

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2007-02-19 17:07:46 +00:00
parent 966bde8a27
commit 110eee0441

5
pack.c
View file

@ -1402,7 +1402,6 @@ pack_unpack(str, fmt)
s += len;
break;
case 'b':
{
VALUE bitstr;
@ -1562,6 +1561,7 @@ pack_unpack(str, fmt)
}
PACK_ITEM_ADJUST();
break;
case 'L':
PACK_LENGTH_ADJUST(unsigned long,4);
while (len-- > 0) {
@ -1582,7 +1582,8 @@ pack_unpack(str, fmt)
}
PACK_ITEM_ADJUST();
break;
case 'Q':
case 'Q':
PACK_LENGTH_ADJUST_SIZE(QUAD_SIZE);
while (len-- > 0) {
char *tmp = (char*)s;