1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-07-02 16:58:30 +00:00

Fix dlopen on Android

This commit is contained in:
Unrud 2021-12-25 19:58:29 +01:00
parent 9fd715de37
commit 019c972b9d

View file

@ -77,7 +77,7 @@ if sys.platform == "linux":
RENAME_EXCHANGE: int = 2 RENAME_EXCHANGE: int = 2
try: try:
renameat2 = ctypes.CDLL("", use_errno=True).renameat2 renameat2 = ctypes.CDLL(None, use_errno=True).renameat2
except AttributeError: except AttributeError:
pass pass
else: else: