summaryrefslogtreecommitdiff
path: root/src/binaryen-c.cpp
diff options
context:
space:
mode:
authorPaulo Matos <pmatos@linki.tools>2021-05-06 19:17:46 +0200
committerGitHub <noreply@github.com>2021-05-06 10:17:46 -0700
commitc84116dd715c3e548f6de1b8d2e2c29b5e248132 (patch)
treebb1cc85468243651652aef28efb76401397b3993 /src/binaryen-c.cpp
parent14506179e55978d5f8ef4547d05f8d134bdc4c6b (diff)
downloadbinaryen-c84116dd715c3e548f6de1b8d2e2c29b5e248132.tar.gz
binaryen-c84116dd715c3e548f6de1b8d2e2c29b5e248132.tar.bz2
binaryen-c84116dd715c3e548f6de1b8d2e2c29b5e248132.zip
Fix typo in function name: BinayenElementSegmentIsPassive (#3862)
Becomes BinaryenElementSegmentIsPassive
Diffstat (limited to 'src/binaryen-c.cpp')
-rw-r--r--src/binaryen-c.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binaryen-c.cpp b/src/binaryen-c.cpp
index c91c15422..4d0a04718 100644
--- a/src/binaryen-c.cpp
+++ b/src/binaryen-c.cpp
@@ -4045,7 +4045,7 @@ void BinaryenElementSegmentSetTable(BinaryenElementSegmentRef elem,
const char* table) {
((ElementSegment*)elem)->table = table;
}
-bool BinayenElementSegmentIsPassive(BinaryenElementSegmentRef elem) {
+bool BinaryenElementSegmentIsPassive(BinaryenElementSegmentRef elem) {
return ((ElementSegment*)elem)->table.isNull();
}