Skip to content

Commit 4825e74

Browse files
authored
Merge pull request WebAssembly#482 from fitzgen/patch-2
Fix off-by-one length in `binary-gc.wast`
2 parents bf5679d + 8b512dd commit 4825e74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/core/gc/binary-gc.wast

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
(module binary
33
"\00asm" "\01\00\00\00"
44
"\01" ;; Type section id
5-
"\05" ;; Type section length
5+
"\04" ;; Type section length
66
"\01" ;; Types vector length
77
"\5e" ;; Array type, -0x22
88
"\78" ;; Storage type: i8 or -0x08

0 commit comments

Comments
 (0)