Skip to content

Commit 7a684a7

Browse files
committed
Minor whitespace/variable rewording
1 parent dcd5d12 commit 7a684a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/mysql2/statement.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static void rb_mysql_stmt_mark(void * ptr) {
2121
rb_gc_mark(stmt_wrapper->client);
2222
}
2323

24-
static void *nogvl_stmt_close(void * ptr) {
24+
static void *nogvl_stmt_close(void *ptr) {
2525
mysql_stmt_wrapper *stmt_wrapper = ptr;
2626
if (stmt_wrapper->stmt) {
2727
mysql_stmt_close(stmt_wrapper->stmt);
@@ -30,7 +30,7 @@ static void *nogvl_stmt_close(void * ptr) {
3030
return NULL;
3131
}
3232

33-
static void rb_mysql_stmt_free(void * ptr) {
33+
static void rb_mysql_stmt_free(void *ptr) {
3434
mysql_stmt_wrapper *stmt_wrapper = ptr;
3535
decr_mysql2_stmt(stmt_wrapper);
3636
}

0 commit comments

Comments
 (0)