]> granicus.if.org Git - php/commitdiff
typo-fix error message
authorWez Furlong <wez@php.net>
Sun, 13 Feb 2005 06:27:03 +0000 (06:27 +0000)
committerWez Furlong <wez@php.net>
Sun, 13 Feb 2005 06:27:03 +0000 (06:27 +0000)
ext/pdo_odbc/odbc_stmt.c

index c143ef8d2f876d576c6082311053c4ffd54a8c9a..fabb7b261625509f365afba9be3c37d93bc085b6 100755 (executable)
@@ -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;
                                }