From: Valentin Collet Date: Thu, 20 Sep 2018 13:13:36 +0000 (+0200) Subject: fixing comments X-Git-Tag: php-7.4.0alpha1~1803^2~4^2^2~4^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b9944452b75ec352e629a7856e81400c4b933b9f;p=php fixing comments --- diff --git a/ext/pdo_oci/oci_statement.c b/ext/pdo_oci/oci_statement.c index 13a4590801..de4b5c36e6 100644 --- a/ext/pdo_oci/oci_statement.c +++ b/ext/pdo_oci/oci_statement.c @@ -834,7 +834,7 @@ static int oci_stmt_col_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_val if (dtype) { - // if there is a declared type + /* if there is a declared type */ switch (dtype) { #ifdef SQLT_TIMESTAMP case SQLT_TIMESTAMP: @@ -929,10 +929,10 @@ static int oci_stmt_col_meta(pdo_stmt_t *stmt, zend_long colno, zval *return_val add_assoc_string(return_value, "native_type", "UNKNOWN"); } } else if (data_size) { - // if the column is the result of a function + /* if the column is the result of a function */ add_assoc_string(return_value, "native_type", "UNKNOWN"); } else { - // if the column is NULL + /* if the column is NULL */ add_assoc_long(return_value, "oci:decl_type", 0); add_assoc_string(return_value, "native_type", "NULL"); }