summaryrefslogtreecommitdiff
path: root/ext/dbplus/dbplus.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-08-11 16:39:07 +0000
committerZeev Suraski <zeev@php.net>2001-08-11 16:39:07 +0000
commitf6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa (patch)
tree4013e29cc962a2f0363f61d764da46d8302d828e /ext/dbplus/dbplus.c
parentbafa98109cb7ac4c95a4d47e010139f4cd100bde (diff)
downloadphp-git-f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa.tar.gz
Whitespace
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);
}
/* }}} */