mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 14:17:35 +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
|
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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue