Skip to content

Commit 2c6deac

Browse files
committedFeb 22, 2014
Merge pull request #61 from GarysMods2014/fixBoolean
Fix for unknown symbol convert_to_bool
2 parents 04e41d0 + 96e7117 commit 2c6deac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎g_config.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ static void php_git2_config_set_with(INTERNAL_FUNCTION_PARAMETERS, enum php_git2
119119
}
120120
case PHP_GIT2_CONFIG_BOOL: {
121121
if (Z_TYPE_P(value) != IS_BOOL) {
122-
convert_to_bool(value);
122+
convert_to_boolean(value);
123123
}
124124
error = git_config_set_bool(PHP_GIT2_V(_cfg, config), name, Z_LVAL_P(value));
125125
if (php_git2_check_error(error, "git_config_set_bool" TSRMLS_CC)) {

0 commit comments

Comments
 (0)
Please sign in to comment.