Skip to content

Commit e0bd054

Browse files
committed
fix typo
1 parent d5834b9 commit e0bd054

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/platformchannel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1857,7 +1857,7 @@ bool stdvalue_equals(struct std_value *a, struct std_value *b) {
18571857
PRAGMA_DIAGNOSTIC_PUSH
18581858
PRAGMA_DIAGNOSTIC_IGNORED("-Wfloat-equal")
18591859
for (int i = 0; i < a->size; i++) {
1860-
if (a->float32array[i] != b->float32array) {
1860+
if (a->float32array[i] != b->float32array[i]) {
18611861
return false;
18621862
}
18631863
}

0 commit comments

Comments
 (0)