Skip to content

Commit bc7803e

Browse files
committed
Fix CI
1 parent 36de9a4 commit bc7803e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/ffigen/lib/src/code_generator/objc_block.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class ObjCBlock extends BindingType with HasLocalScope {
114114
'${returnType.cacheKey()} ${returnsRetained ? 'R' : ''}',
115115
for (final param in params)
116116
'${param.type.cacheKey()} ${param.objCConsumed ? 'C' : ''}',
117-
].join(strings.synthUsrChar);
117+
].join(' ');
118118
}
119119

120120
bool get hasListener => returnType == voidType;

0 commit comments

Comments
 (0)