summaryrefslogtreecommitdiff
path: root/ext/dbplus/dbplus.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/dbplus/dbplus.c')
-rw-r--r--ext/dbplus/dbplus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dbplus/dbplus.c b/ext/dbplus/dbplus.c
index fc136bb84f..8bbd352fc3 100644
--- a/ext/dbplus/dbplus.c
+++ b/ext/dbplus/dbplus.c
@@ -208,13 +208,13 @@ PHP_FUNCTION(dbplus_open)
convert_to_long_ex(writing);
convert_to_long_ex(searchpath);
- conn = cdb_open((*name)->value.str.val,(*writing)->value.lval,(*searchpath)->value.lval);
+ conn = cdb_open((*name)->value.str.val, (*writing)->value.lval, (*searchpath)->value.lval);
if(conn == NULL) {
/* TODO error handling */
RETURN_FALSE;
}
- ZEND_REGISTER_RESOURCE(return_value,conn,le_dbplus);
+ ZEND_REGISTER_RESOURCE(return_value, conn, le_dbplus);
}
/* }}} */