Browse Source

Fix `fmt` for `js`

gingerBill 2 years ago
parent
commit
d6f45e4d76
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/fmt/fmt_js.odin

+ 1 - 1
core/fmt/fmt_js.odin

@@ -7,7 +7,7 @@ foreign import "odin_env"
 
 @(private="file")
 foreign odin_env {
-	write :: proc "c" (fd: u32, p: []byte) ---
+	write :: proc "contextless" (fd: u32, p: []byte) ---
 }
 
 @(private="file")