Skip to content

Commit f7f9a5e

Browse files
committed
WIP: change py_ph to object
Signed-off-by: Christopher Obbard <christopher.obbard@linaro.org>
1 parent c5d377a commit f7f9a5e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pyfuse3/handlers.pxi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@ async def fuse_access_async (_Container c):
839839
cdef void fuse_poll (fuse_req_t req, fuse_ino_t ino, fuse_file_info *fi,
840840
fuse_pollhandle *ph):
841841
cdef _Container c = _Container()
842-
cdef PollHandle py_ph
842+
cdef object py_ph
843843
c.req = req
844844
c.ino = ino
845845
if fi is NULL:
@@ -852,7 +852,7 @@ cdef void fuse_poll (fuse_req_t req, fuse_ino_t ino, fuse_file_info *fi,
852852
py_ph = PollHandle.from_ptr(ph)
853853
save_retval(fuse_poll_async(c, py_ph))
854854

855-
async def fuse_poll_async (_Container c, PollHandle py_ph):
855+
async def fuse_poll_async (_Container c, object py_ph):
856856
cdef int ret
857857
cdef unsigned revents
858858

0 commit comments

Comments
 (0)