mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 04:52:59 +01:00
Fix an use of execute()
This commit is contained in:
parent
3cffd46008
commit
8eaed95e02
@ -35,7 +35,7 @@ is_deeply(Data::MessagePack->unpack($packed), $input);
|
|||||||
while( read($stream, $buff, $size) ) {
|
while( read($stream, $buff, $size) ) {
|
||||||
note "buff: ", join " ", map { unpack 'H2', $_ } split //, $buff;
|
note "buff: ", join " ", map { unpack 'H2', $_ } split //, $buff;
|
||||||
|
|
||||||
$up->execute($buff);
|
$up->execute($buff, 0);
|
||||||
}
|
}
|
||||||
ok $up->is_finished, 'is_finished';
|
ok $up->is_finished, 'is_finished';
|
||||||
my $data = $up->data;
|
my $data = $up->data;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user