aboutsummaryrefslogtreecommitdiffstats
path: root/libgamma-error.hh
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-07-17 21:07:37 +0200
committerMattias Andrée <maandree@kth.se>2024-07-17 21:07:37 +0200
commit57398cc26d66ec78cc65d4e9b23d0519406ff4e8 (patch)
treeece7d8b9b2a2837ec7a9d675b7e14641689e35fc /libgamma-error.hh
parentEmpty signed commit (diff)
downloadlibgammamm-57398cc26d66ec78cc65d4e9b23d0519406ff4e8.tar.gz
libgammamm-57398cc26d66ec78cc65d4e9b23d0519406ff4e8.tar.bz2
libgammamm-57398cc26d66ec78cc65d4e9b23d0519406ff4e8.tar.xz
Update for libgamma 0.7.41.0.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libgamma-error.hh')
-rw-r--r--libgamma-error.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/libgamma-error.hh b/libgamma-error.hh
index ec252c7..63189ee 100644
--- a/libgamma-error.hh
+++ b/libgamma-error.hh
@@ -82,13 +82,13 @@ namespace libgamma
const GroupGid &
operator =(const libgamma_gid_t &value) const
{
- libgamma_group_gid = value;
+ libgamma_group_gid_set(value);
return *this;
}
operator libgamma_gid_t() const
{
- return libgamma_group_gid;
+ return libgamma_group_gid_get();
}
};
@@ -108,13 +108,13 @@ namespace libgamma
const GroupName &
operator =(const char *value) const
{
- libgamma_group_name = value;
+ libgamma_group_name_set(value);
return *this;
}
operator const char *() const
{
- return libgamma_group_name;
+ return libgamma_group_name_get();
}
};