mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Fix dlopen on Android
This commit is contained in:
parent
4564de9f9d
commit
7bfb6c0132
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ if sys.platform == "linux":
|
|||
|
||||
RENAME_EXCHANGE: int = 2
|
||||
try:
|
||||
renameat2 = ctypes.CDLL("", use_errno=True).renameat2
|
||||
renameat2 = ctypes.CDLL(None, use_errno=True).renameat2
|
||||
except AttributeError:
|
||||
pass
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue