Skip to content

Commit 3fc4be0

Browse files
committed
Remove varaible redeclaration
1 parent f113643 commit 3fc4be0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mono/mono/metadata/marshal-lightweight.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2802,7 +2802,7 @@ emit_managed_wrapper_ilgen (MonoMethodBuilder *mb, MonoMethodSignature *invoke_s
28022802
arg_is_lowered_struct = g_newa (int, sig->param_count);
28032803
int lowered_struct_count = 0;
28042804

2805-
for (int i =0; i < sig->param_count; i++) {
2805+
for (i =0; i < sig->param_count; i++) {
28062806
MonoType *ptype = sig->params [i];
28072807
MonoClass *klass = mono_class_from_mono_type_internal (ptype);
28082808
arg_is_lowered_struct [i] = FALSE;

0 commit comments

Comments
 (0)