Skip to content

Commit 5ce464e

Browse files
committed
Fix for php_git2_diff_delta_to_array
1 parent 04e41d0 commit 5ce464e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

diff.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ PHP_FUNCTION(git_diff_get_delta)
288288

289289
ZEND_FETCH_RESOURCE(_diff, php_git2_t*, &diff, -1, PHP_GIT2_RESOURCE_NAME, git2_resource_handle);
290290
result = git_diff_get_delta(PHP_GIT2_V(_diff, diff), idx);
291-
php_git2_git_diff_delta_to_array(result, &_result TSRMLS_CC);
291+
php_git2_diff_delta_to_array(result, &_result TSRMLS_CC);
292292
RETURN_ZVAL(_result, 0, 1);
293293
}
294294
/* }}} */

0 commit comments

Comments
 (0)