Skip to content

Commit 2cac24b

Browse files
committed
Use meaningful variable name
1 parent 2155ae5 commit 2cac24b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/fiddle/function.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ VALUE cFiddleFunction;
3131
static void
3232
deallocate(void *p)
3333
{
34-
ffi_cif *ptr = p;
35-
if (ptr->arg_types) xfree(ptr->arg_types);
36-
xfree(ptr);
34+
ffi_cif *cif = p;
35+
if (cif->arg_types) xfree(cif->arg_types);
36+
xfree(cif);
3737
}
3838

3939
static size_t

0 commit comments

Comments
 (0)