From 0f30d227497418c6d3bef7d52244407e30454504 Mon Sep 17 00:00:00 2001 From: Kacper Date: Mon, 22 Dec 2025 23:27:56 +0100 Subject: Added c11 threads, fixed some locks and add *_unlocked functions --- lib/libc/stdio/popen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc/stdio/popen.c') diff --git a/lib/libc/stdio/popen.c b/lib/libc/stdio/popen.c index 1fd5f991..5720fba3 100644 --- a/lib/libc/stdio/popen.c +++ b/lib/libc/stdio/popen.c @@ -62,7 +62,7 @@ FILE *popen(const char *command, const char *mode) close(pipefd[0]); } - __FILE(stream)->pid = pid; + stream->pid = pid; return stream; } -- cgit v1.2.3