Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
emkornfield authored and pitrou committed Jul 2, 2019
1 parent 9c905b0 commit 21e1b95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/pyarrow/_plasma.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -708,10 +708,10 @@ cdef class PlasmaClient:
cdef int64_t data_size
cdef int64_t metadata_size
with nogil:
self.client.get().GetNotification(self.notification_fd,
&object_id.data,
&data_size,
&metadata_size)
status = self.client.get().GetNotification(self.notification_fd,
&object_id.data,
&data_size,
&metadata_size)
plasma_check_status(status)
return object_id, data_size, metadata_size

Expand Down

0 comments on commit 21e1b95

Please sign in to comment.