diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-08-09 23:19:55 -0300 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-08-12 16:15:45 +0200 |
commit | 84b195d9fc5ba2b65ceb46d8ec3d4676bf51a538 (patch) | |
tree | 2c3100631a749d0ebc5515f06a950dae8c9d9b3b /ext/pgsql/php_pgsql.h | |
parent | 9ea7d259effc81700e8b7f03f56c47c14201548e (diff) | |
download | php-git-84b195d9fc5ba2b65ceb46d8ec3d4676bf51a538.tar.gz |
Fix some misspellings
Diffstat (limited to 'ext/pgsql/php_pgsql.h')
-rw-r--r-- | ext/pgsql/php_pgsql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/php_pgsql.h b/ext/pgsql/php_pgsql.h index 0d575d2b85..c6d93a3927 100644 --- a/ext/pgsql/php_pgsql.h +++ b/ext/pgsql/php_pgsql.h @@ -198,7 +198,7 @@ PHP_FUNCTION(pg_select); #define PGSQL_CONNECT_FORCE_NEW (1<<1) #define PGSQL_CONNECT_ASYNC (1<<2) /* php_pgsql_convert options */ -#define PGSQL_CONV_IGNORE_DEFAULT (1<<1) /* Do not use DEAFULT value by removing field from returned array */ +#define PGSQL_CONV_IGNORE_DEFAULT (1<<1) /* Do not use DEFAULT value by removing field from returned array */ #define PGSQL_CONV_FORCE_NULL (1<<2) /* Convert to NULL if string is null string */ #define PGSQL_CONV_IGNORE_NOT_NULL (1<<3) /* Ignore NOT NULL constraints */ #define PGSQL_CONV_OPTS (PGSQL_CONV_IGNORE_DEFAULT|PGSQL_CONV_FORCE_NULL|PGSQL_CONV_IGNORE_NOT_NULL) |