summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysif.c b/sysif.c
index 6f4ad727..13f5f2a6 100644
--- a/sysif.c
+++ b/sysif.c
@@ -1846,8 +1846,8 @@ static val getresgid_wrap(void)
{
gid_t r, e, s;
if (getresgid(&r, &e, &s) != 0)
- uw_throwf(system_error_s, lit("getresgid failed: ~d/~s"),
- num(errno), errno_to_str(errno), nao);
+ uw_ethrowf(system_error_s, lit("getresgid failed: ~d/~s"),
+ num(errno), errno_to_str(errno), nao);
return list(num(r), num(e), num(s), nao);
}