aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/patches
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-02-16 11:15:07 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2023-02-16 11:15:07 +0100
commit9693860bc0cbb49ac68ad23a8297be6eb1bc2add (patch)
treee8dd8005a683bbd233ecdf68c1a9153a395a4cb2 /patches
parent4cf3bd63a22bd2f88c1f04cddac31aa19bc78a9d (diff)
inserted a workaround for mac-os, see https://github.com/ziglang/zig/issues/14657#issuecomment-1432180967
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/093_hello_c.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/patches/patches/093_hello_c.patch b/patches/patches/093_hello_c.patch
index 15e2a44..a0f62c2 100644
--- a/patches/patches/093_hello_c.patch
+++ b/patches/patches/093_hello_c.patch
@@ -1,4 +1,4 @@
-58c58
-< const c_res = fprintf(c.stderr, "Hello C from Zig!");
+63c63
+< const c_res = fprintf(stderr, "Hello C from Zig!");
---
-> const c_res = c.fprintf(c.stderr, "Hello C from Zig!");
+> const c_res = c.fprintf(stderr, "Hello C from Zig!");