Skip to content

Commit cccffef

Browse files
committed
Fix missing variable
It seems like no one has tried to compile on a platform without `setsid` for almost a quarter of a century.
1 parent c4dadfb commit cccffef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

process.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5258,7 +5258,7 @@ static rb_pid_t
52585258
ruby_setsid(void)
52595259
{
52605260
rb_pid_t pid;
5261-
int ret;
5261+
int ret, fd;
52625262

52635263
pid = getpid();
52645264
#if defined(SETPGRP_VOID)

0 commit comments

Comments
 (0)