Skip to content

Commit

Permalink
mkfifo: fix mismatched declaration for mkfifo in mkfifo_default.c.v (…
Browse files Browse the repository at this point in the history
…int->u32)
  • Loading branch information
spytheman committed Dec 26, 2024
1 parent 27d1acd commit 489c7a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mkfifo/mkfifo_default.c.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// mkfifo on unsupported platforms
fn mkfifo(pathname string, mode int) int {
fn mkfifo(pathname string, mode u32) int {
return -1
}

0 comments on commit 489c7a6

Please sign in to comment.