Skip to content

Commit

Permalink
Update, compile passed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeolar committed Jul 25, 2017
1 parent 09ff103 commit 143d254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/plasma/test/serialization_tests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ TEST(PlasmaSerialization, StatusReply) {
int object_statuses[2] = {42, 43};
ARROW_CHECK_OK(SendStatusReply(fd, object_ids, object_statuses, 2));
std::vector<uint8_t> data = read_message_from_file(fd, MessageType_PlasmaStatusReply);
int64_t num_objects = ReadStatusReply_num_objects(data.data());
int64_t num_objects = ReadStatusReply_num_objects(data.data(), data.size());
ObjectID object_ids_read[num_objects];
int object_statuses_read[num_objects];
ARROW_CHECK_OK(
Expand Down

0 comments on commit 143d254

Please sign in to comment.