Skip to content

Commit 1c64293

Browse files
committed
Merge pull request #62 from GarysMods2014/fixDiffMerge
Fix for php_git2_git_diff_delta_to_array
2 parents 2c6deac + 5ce464e commit 1c64293

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)