From b9944452b75ec352e629a7856e81400c4b933b9f Mon Sep 17 00:00:00 2001 From: Valentin Collet Date: Thu, 20 Sep 2018 15:13:36 +0200 Subject: [PATCH] fixing comments --- ext/pdo_oci/oci_statement.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"); } -- 2.50.1