diff options
author | Mattias Andrée <maandree@kth.se> | 2024-07-17 22:40:34 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-07-17 22:40:34 +0200 |
commit | 111400ff6859f275683ddedc8d786967cd2c7fb3 (patch) | |
tree | 758642dd46d41e108514e81936bc8c73371d72cf /libgamma_native_error.w32.pyx | |
parent | Fix makefile (diff) | |
download | pylibgamma-111400ff6859f275683ddedc8d786967cd2c7fb3.tar.gz pylibgamma-111400ff6859f275683ddedc8d786967cd2c7fb3.tar.bz2 pylibgamma-111400ff6859f275683ddedc8d786967cd2c7fb3.tar.xz |
Update for libgamma 0.7.41.1.4
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libgamma_native_error.w32.pyx | 4 |
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: |