diff options
author | foobar <sniper@php.net> | 2005-04-19 11:28:02 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-04-19 11:28:02 +0000 |
commit | cb0c9ac022f8c4112b8309d03261f6ac0f8f365e (patch) | |
tree | 80bec55e637d4077cad8f4eb2f8094c6d579d67b /ext/sqlite/pdo_sqlite2.c | |
parent | 70137887112c7916412017b5e750fc3f49ef5020 (diff) | |
download | php-git-cb0c9ac022f8c4112b8309d03261f6ac0f8f365e.tar.gz |
- This is not C++ code
Diffstat (limited to 'ext/sqlite/pdo_sqlite2.c')
-rw-r--r-- | ext/sqlite/pdo_sqlite2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/pdo_sqlite2.c b/ext/sqlite/pdo_sqlite2.c index b22167126c..c797dbe8a7 100644 --- a/ext/sqlite/pdo_sqlite2.c +++ b/ext/sqlite/pdo_sqlite2.c @@ -390,7 +390,7 @@ static int sqlite2_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquo ret[len + 3] = '\0'; *quoted = ret; *quotedlen = len + 3; - //fprintf(stderr, "Quoting:%d:%.*s:\n", *quotedlen, *quotedlen, *quoted); + /* fprintf(stderr, "Quoting:%d:%.*s:\n", *quotedlen, *quotedlen, *quoted); */ return 1; } else if (unquotedlen) { ret = sqlite_mprintf("'%q'", unquoted); |