Skip to content

Commit c6d29b3

Browse files
committed
Fix warning, return in noreturn function
1 parent 68caa68 commit c6d29b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php_phongo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1721,7 +1721,7 @@ static void* php_phongo_realloc(void *mem, size_t num_bytes) { /* {{{ */
17211721
static void php_phongo_free(void *mem) /* {{{ */
17221722
{
17231723
if (mem) {
1724-
return efree(mem);
1724+
efree(mem);
17251725
}
17261726
} /* }}} */
17271727

0 commit comments

Comments
 (0)