aboutsummaryrefslogtreecommitdiffstats
path: root/libgamma_native_error.w32.pyx
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-07-17 22:40:34 +0200
committerMattias Andrée <maandree@kth.se>2024-07-17 22:40:34 +0200
commit111400ff6859f275683ddedc8d786967cd2c7fb3 (patch)
tree758642dd46d41e108514e81936bc8c73371d72cf /libgamma_native_error.w32.pyx
parentFix makefile (diff)
downloadpylibgamma-111400ff6859f275683ddedc8d786967cd2c7fb3.tar.gz
pylibgamma-111400ff6859f275683ddedc8d786967cd2c7fb3.tar.bz2
pylibgamma-111400ff6859f275683ddedc8d786967cd2c7fb3.tar.xz
Update for libgamma 0.7.4HEAD1.1.4master
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--libgamma_native_error.w32.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgamma_native_error.w32.pyx b/libgamma_native_error.w32.pyx
index 21548f0..708e699 100644
--- a/libgamma_native_error.w32.pyx
+++ b/libgamma_native_error.w32.pyx
@@ -64,7 +64,7 @@ def libgamma_native_get_group_gid() -> int:
Group that the user needs to be a member of if
`LIBGAMMA_DEVICE_REQUIRE_GROUP` is returned
'''
- return int(libgamma_group_gid)
+ return int(libgamma_group_gid_get())
def libgamma_native_set_group_gid(gid : int):
@@ -74,7 +74,7 @@ def libgamma_native_set_group_gid(gid : int):
Group that the user needs to be a member of if
`LIBGAMMA_DEVICE_REQUIRE_GROUP` is returned
'''
- libgamma_group_gid = <int>gid
+ libgamma_group_gid_set(<int>gid)
def libgamma_native_get_group_name() -> str: