diff options
author | Uwe Steinmann <steinm@php.net> | 2003-09-21 13:17:20 +0000 |
---|---|---|
committer | Uwe Steinmann <steinm@php.net> | 2003-09-21 13:17:20 +0000 |
commit | eea84f787b712b1a4cb853d70be2abfa084fb759 (patch) | |
tree | 7c9fbc6885d3cfddc53980605a2c9515f4b08d37 /ext/dbase | |
parent | 394d3b82b0eb7eb419aacc0780713ff797e85943 (diff) | |
download | php-git-eea84f787b712b1a4cb853d70be2abfa084fb759.tar.gz |
- fixed typo in error message
Diffstat (limited to 'ext/dbase')
-rw-r--r-- | ext/dbase/dbase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dbase/dbase.c b/ext/dbase/dbase.c index 54434fb701..43a8dfd89e 100644 --- a/ext/dbase/dbase.c +++ b/ext/dbase/dbase.c @@ -664,7 +664,7 @@ PHP_FUNCTION(dbase_create) /* field type */ if (zend_hash_index_find(Z_ARRVAL_PP (field), 1, (void **)&value) == FAILURE) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "expected field type as sececond element of list in field %d", i); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "expected field type as second element of list in field %d", i); RETURN_FALSE; } convert_to_string_ex(value); |