From: Wez Furlong Date: Sun, 13 Feb 2005 06:27:03 +0000 (+0000) Subject: typo-fix error message X-Git-Tag: RELEASE_0_2_3~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a32b478f9cebbaa1e651749a935363c9589fc3c;p=php typo-fix error message --- diff --git a/ext/pdo_odbc/odbc_stmt.c b/ext/pdo_odbc/odbc_stmt.c index c143ef8d2f..fabb7b2616 100755 --- a/ext/pdo_odbc/odbc_stmt.c +++ b/ext/pdo_odbc/odbc_stmt.c @@ -170,7 +170,6 @@ static int odbc_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *p case PDO_PARAM_EVT_ALLOC: { - /* figure out what we're doing */ switch (PDO_PARAM_TYPE(param->param_type)) { case PDO_PARAM_LOB: @@ -208,7 +207,7 @@ static int odbc_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *p } if (PDO_PARAM_TYPE(param->param_type) == PDO_PARAM_LOB && P->paramtype != SQL_PARAM_INPUT) { - pdo_odbc_stmt_error("Can bind a lob for output"); + pdo_odbc_stmt_error("Can't bind a lob for output"); return 0; }