summaryrefslogtreecommitdiff
path: root/ext/spl/php_spl.c
diff options
context:
space:
mode:
authorVeres Lajos <vlajos@gmail.com>2014-08-12 22:00:23 +0100
committerLior Kaplan <kaplanlior@gmail.com>2014-08-17 15:44:02 +0300
commit3f42f2f5d1c8026b6e1d21b91857a08d918c28c8 (patch)
tree9d007c39909e160f3ba313545de32e0dba73cfa3 /ext/spl/php_spl.c
parent0407bdf252004cce08e383bc0f4aa0bbc69c9a25 (diff)
downloadphp-git-3f42f2f5d1c8026b6e1d21b91857a08d918c28c8.tar.gz
typofixes
Diffstat (limited to 'ext/spl/php_spl.c')
-rw-r--r--ext/spl/php_spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c
index a37a453c8c..473ab00963 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 intialzed, set to defaults */
+ if (file_exts == NULL) { /* autoload_extensions is not initialzed, 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);