Skip to content

Commit 26af551

Browse files
committed
change uvwasi_linkcount_t to uint64_t
Refs: WebAssembly/WASI#127
1 parent c653fd7 commit 26af551

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1918,7 +1918,7 @@ Members:
19181918

19191919
The address and length of the buffer to be filled.
19201920

1921-
### <a href="#linkcount" name="linkcount"></a>`uvwasi_linkcount_t` (`uint32_t`)
1921+
### <a href="#linkcount" name="linkcount"></a>`uvwasi_linkcount_t` (`uint64_t`)
19221922

19231923
Number of hard links to an inode.
19241924

include/wasi_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ typedef struct uvwasi_iovec_s {
155155
size_t buf_len;
156156
} uvwasi_iovec_t;
157157

158-
typedef uint32_t uvwasi_linkcount_t;
158+
typedef uint64_t uvwasi_linkcount_t;
159159

160160
typedef uint32_t uvwasi_lookupflags_t; /* Bitfield */
161161
#define UVWASI_LOOKUP_SYMLINK_FOLLOW (1 << 0)

0 commit comments

Comments
 (0)