commit c3480c5e80895b19bc83463da46878450ca650c6 parent 737eed758312d7bc1cd3ffd57830e2dae6016a68 Author: Jan Pobříslo <ccx@te2000.cz> Date: Thu, 22 Feb 2024 06:55:58 +0100 ctypes fix Diffstat:
M | userns_sandbox.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/userns_sandbox.py b/userns_sandbox.py @@ -89,7 +89,7 @@ _mount.argtypes = ( _umount = libc.umount _umount.restype = ctypes.c_int -_umount.argtypes = ctypes.c_char_p +_umount.argtypes = (ctypes.c_char_p,) def c_path(path):