diff options
author | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 21:32:53 +0300 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2014-08-17 21:32:53 +0300 |
commit | 1504f7d630c01fcfe9cd23b9e8aff7195a3864f7 (patch) | |
tree | 16a5826726dedc9ac3822d671c53b4b5d316274d /ext/spl | |
parent | 3f42f2f5d1c8026b6e1d21b91857a08d918c28c8 (diff) | |
download | php-git-1504f7d630c01fcfe9cd23b9e8aff7195a3864f7.tar.gz |
Correct typo in comments: 'initialized'
Diffstat (limited to 'ext/spl')
-rw-r--r-- | ext/spl/php_spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 473ab00963..515b5ccfe6 100644 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -326,7 +326,7 @@ PHP_FUNCTION(spl_autoload) RETURN_FALSE; } - if (file_exts == NULL) { /* autoload_extensions is not initialzed, set to defaults */ + if (file_exts == NULL) { /* autoload_extensions is not initialized, set to defaults */ copy = pos1 = estrndup(SPL_DEFAULT_FILE_EXTENSIONS, sizeof(SPL_DEFAULT_FILE_EXTENSIONS)-1); } else { copy = pos1 = estrndup(file_exts, file_exts_len); |