Skip to content

Commit 06bdfd4

Browse files
committed
void
1 parent 5eee23e commit 06bdfd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

embree/embree.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ IF UNAME_SYSNAME == "Windows":
2727
# must be freed with _aligned_free()
2828
# while posix_memalign() just uses regular free()
2929
cdef void free(void *memblock):
30-
return _aligned_free(memblock)
30+
_aligned_free(memblock)
3131
ELIF UNAME_SYSNAME == "Darwin":
3232
# malloc is 16-byte mem aligned by default on Darwin
3333
from libc.stdlib cimport malloc

0 commit comments

Comments
 (0)