Skip to content

Commit 3f5f97b

Browse files
committed
fix for PHP-8's macros missing the terminating ;
1 parent 5ebc6c2 commit 3f5f97b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

saprfc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1971,7 +1971,7 @@ PHP_FUNCTION(saprfc_server_accept)
19711971
rfc_resource->client = 0;
19721972
}
19731973

1974-
RETURN_RES(zend_register_resource(rfc_resource, le_rfc))
1974+
RETURN_RES(zend_register_resource(rfc_resource, le_rfc));
19751975
}
19761976
/* }}} */
19771977

0 commit comments

Comments
 (0)