From 69b776ec106dbab36e3e2317ece6c4fe6f353175 Mon Sep 17 00:00:00 2001 From: Adam Baratz Date: Mon, 31 Oct 2016 12:39:22 -0400 Subject: [PATCH] Fix comment style --- ext/pdo_dblib/dblib_stmt.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ext/pdo_dblib/dblib_stmt.c b/ext/pdo_dblib/dblib_stmt.c index 18e9ab65c1..4354f1fa8f 100644 --- a/ext/pdo_dblib/dblib_stmt.c +++ b/ext/pdo_dblib/dblib_stmt.c @@ -394,7 +394,8 @@ static int pdo_dblib_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, } case SQLUNIQUE: { - if (H->stringify_uniqueidentifier) { // 36-char hex string representation + if (H->stringify_uniqueidentifier) { + /* 36-char hex string representation */ tmp_data_len = 36; tmp_data = safe_emalloc(tmp_data_len, sizeof(char), 1); data_len = (unsigned int) dbconvert(NULL, SQLUNIQUE, (BYTE*)data, data_len, SQLCHAR, (BYTE*)tmp_data, tmp_data_len); @@ -403,7 +404,8 @@ static int pdo_dblib_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, ZVAL_STRINGL(zv, tmp_data, data_len); efree(tmp_data); - } else { // a 16-byte binary representation + } else { + /* 16-byte binary representation */ zv = emalloc(sizeof(zval)); ZVAL_STRINGL(zv, data, 16); } -- 2.50.1