Commit 91134db95d6 for php.net

commit 91134db95d6a0c32c245fa3b518285e694f3374f
Author: Daniel Scherzer <daniel.e.scherzer@gmail.com>
Date:   Sat Mar 14 10:11:33 2026 -0700

    ReflectionFiber::getCallable(): remove stray backslash (#21439)

diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c
index 5a349b28905..40a759043f0 100644
--- a/ext/reflection/php_reflection.c
+++ b/ext/reflection/php_reflection.c
@@ -7890,7 +7890,7 @@ ZEND_METHOD(ReflectionFiber, getCallable)
 	ZEND_PARSE_PARAMETERS_NONE();

 	if (fiber == NULL || fiber->context.status == ZEND_FIBER_STATUS_DEAD) {
-		zend_throw_error(NULL, "Cannot fetch the callable from a fiber that has terminated"); \
+		zend_throw_error(NULL, "Cannot fetch the callable from a fiber that has terminated");
 		RETURN_THROWS();
 	}