From f4590df071227bd322e2cb0e5f606562738ad0b5 Mon Sep 17 00:00:00 2001 From: RaphGL Date: Thu, 9 Apr 2026 21:04:48 -0100 Subject: [PATCH] fixed wrong fd number for stderr --- core/sys/freebsd/constants.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sys/freebsd/constants.odin b/core/sys/freebsd/constants.odin index f6d6de2e6..692cfc0fe 100644 --- a/core/sys/freebsd/constants.odin +++ b/core/sys/freebsd/constants.odin @@ -16,4 +16,4 @@ STDOUT_FILENO :: Fd(1) /* Standard error file descriptor */ -STDERR_FILENO :: Fd(3) +STDERR_FILENO :: Fd(2)