diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-11 16:39:07 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-11 16:39:07 +0000 |
commit | f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa (patch) | |
tree | 4013e29cc962a2f0363f61d764da46d8302d828e /ext/domxml/php_domxml.c | |
parent | bafa98109cb7ac4c95a4d47e010139f4cd100bde (diff) | |
download | php-git-f6f6c4d7e63d2eaf4ece7aee66f46a013b29bffa.tar.gz |
Whitespace
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index 8f8309dc56..1c8990a591 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -312,9 +312,9 @@ static zval *dom_object_get_data(void *obj) { sprintf(tmp, "%08X", obj); fprintf(stderr, "Trying getting %s from object ...", tmp); if(((xmlNodePtr) obj)->_private) - fprintf(stderr," found\n"); + fprintf(stderr, " found\n"); else - fprintf(stderr," not found\n"); */ + fprintf(stderr, " not found\n"); */ return((zval *) (((xmlNodePtr) obj)->_private)); } @@ -423,9 +423,9 @@ static zval *xpath_object_get_data(void *obj) sprintf(tmp, "%08X", obj); fprintf(stderr, "Trying getting %s from hash ...", tmp); if(((xmlXPathObjectPtr) obj)->user) - fprintf(stderr," found\n"); + fprintf(stderr, " found\n"); else - fprintf(stderr," not found\n"); */ + fprintf(stderr, " not found\n"); */ return((zval *) (((xmlXPathObjectPtr) obj)->user)); } @@ -506,9 +506,9 @@ static zval *xpath_context_get_data(void *obj) sprintf(tmp, "%08X", obj); fprintf(stderr, "Trying getting %s from hash ...", tmp); if(((xmlXPathContextPtr) obj)->user) - fprintf(stderr," found\n"); + fprintf(stderr, " found\n"); else - fprintf(stderr," not found\n"); */ + fprintf(stderr, " not found\n"); */ return((zval *) (((xmlXPathContextPtr) obj)->user)); } @@ -2599,7 +2599,7 @@ static void php_xpathptr_eval(INTERNAL_FUNCTION_PARAMETERS, int mode, int expr) } /* }}} */ -/* {{{ proto int xpath_eval([int xpathctx_handle,] string str) +/* {{{ proto int xpath_eval([int xpathctx_handle, ] string str) Evaluate the XPath Location Path in the given string */ PHP_FUNCTION(xpath_eval) { @@ -2607,7 +2607,7 @@ PHP_FUNCTION(xpath_eval) } /* }}} */ -/* {{{ proto int xpath_eval_expression([int xpathctx_handle,] string str) +/* {{{ proto int xpath_eval_expression([int xpathctx_handle, ] string str) Evaluate the XPath Location Path in the given string */ PHP_FUNCTION(xpath_eval_expression) { @@ -2617,7 +2617,7 @@ PHP_FUNCTION(xpath_eval_expression) #endif /* defined(LIBXML_XPATH_ENABLED) */ #if defined(LIBXML_XPTR_ENABLED) -/* {{{ proto int xptr_eval([int xpathctx_handle,] string str) +/* {{{ proto int xptr_eval([int xpathctx_handle, ] string str) Evaluate the XPtr Location Path in the given string */ PHP_FUNCTION(xptr_eval) { |