diff options
author | foobar <sniper@php.net> | 2005-04-19 11:41:04 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-04-19 11:41:04 +0000 |
commit | 0e57528666990120621cc1317f35b696e6ebbd5f (patch) | |
tree | 709f9fbdf6d4c5d6105a8719a4f90222d6ba453a /ext/pdo_firebird/firebird_statement.c | |
parent | cb0c9ac022f8c4112b8309d03261f6ac0f8f365e (diff) | |
download | php-git-0e57528666990120621cc1317f35b696e6ebbd5f.tar.gz |
No c++ comments in C code
Diffstat (limited to 'ext/pdo_firebird/firebird_statement.c')
-rw-r--r-- | ext/pdo_firebird/firebird_statement.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_firebird/firebird_statement.c b/ext/pdo_firebird/firebird_statement.c index 69a7b2e5dd..4ffad306ba 100644 --- a/ext/pdo_firebird/firebird_statement.c +++ b/ext/pdo_firebird/firebird_statement.c @@ -351,7 +351,7 @@ static int firebird_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, /* {{ *ptr = var->sqldata; *len = var->sqllen; break; -// --- cut here --- +/* --- cut here --- */ case SQL_SHORT: *ptr = FETCH_BUF(S->fetch_buf[colno], char, 24, NULL); *len = sprintf(*ptr, "%d", *(short*)var->sqldata); @@ -372,7 +372,7 @@ static int firebird_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, /* {{ *ptr = FETCH_BUF(S->fetch_buf[colno], char, 24, NULL); *len = sprintf(*ptr, "%f" , *(double*)var->sqldata); break; -// --- cut here --- +/* --- cut here --- */ #if abies_0 case SQL_SHORT: *ptr = FETCH_BUF(S->fetch_buf[colno], long, 0, *len); |