Skip to content

Commit 8db3cc4

Browse files
committed
Remove return value for void function
1 parent ca4a2c5 commit 8db3cc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c_src/sqlite3_nif.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ exqlite_free(void* prior)
5050
// Shift the pointer back to free the proper block of data
5151
p--;
5252

53-
return enif_free(p);
53+
enif_free(p);
5454
}
5555

5656
static void*

0 commit comments

Comments
 (0)