Skip to content

Commit

Permalink
";" is not needed with Cython and can cause problems
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@11692 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jan 13, 2016
1 parent 1293648 commit 5e9223b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/codecs/csc_libyuv/colorspace_converter.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ cdef object memory_as_readonly_pybuffer(void *ptr, Py_ssize_t buf_len):
cdef Py_buffer pybuf
cdef Py_ssize_t shape[1]
shape[0] = buf_len
cdef int ret = PyBuffer_FillInfo(&pybuf, None, ptr, buf_len, 0, PyBUF_SIMPLE);
cdef int ret = PyBuffer_FillInfo(&pybuf, None, ptr, buf_len, 0, PyBUF_SIMPLE)
if ret!=0:
return None
pybuf.format = "B"
Expand Down

0 comments on commit 5e9223b

Please sign in to comment.