remove debug

This commit is contained in:
George Schlossnagle 2004-05-20 18:50:21 +00:00
parent c22cb0477c
commit b7b7bedabd

View File

@ -1,4 +1,4 @@
/* Generated by re2c 0.5 on Thu May 20 13:51:55 2004 */
/* Generated by re2c 0.5 on Thu May 20 13:55:15 2004 */
#line 1 "/home/george/src/pecl/pdo/pdo_sql_parser.re"
/*
+----------------------------------------------------------------------+
@ -239,7 +239,6 @@ int pdo_parse_params(pdo_stmt_t *stmt, char *inquery, int inquery_len, char **ou
/* stupid keys need to be null-terminated, even though we know their length */
crutch = s.tok[s.cur-s.tok];
s.tok[s.cur-s.tok] = '\0';
fprintf(stderr, "looking up key: (%.*s)", s.cur-s.tok + 1, s.tok);
if((SUCCESS == zend_hash_find(params, s.tok, s.cur-s.tok + 1,(void **)&param))
||
(SUCCESS == zend_hash_index_find(params, bindno, (void **)&param)))
@ -310,7 +309,6 @@ fprintf(stderr, "looking up key: (%.*s)", s.cur-s.tok + 1, s.tok);
}
}
*ptr = '\0';
fprintf(stderr, "good\n");
return 0;
}