summaryrefslogtreecommitdiff
path: root/ext/standard/image.c
diff options
context:
space:
mode:
authorVeres Lajos <vlajos@gmail.com>2014-11-20 20:00:07 +0000
committerStanislav Malyshev <stas@php.net>2014-11-23 14:52:47 -0800
commit06fdf359e3217f795fded77e337d5417426b8d64 (patch)
tree9ebcbc2030b120df99450a30550bbdacdebabec4 /ext/standard/image.c
parent38229d13d14bb0bda736d52a9a4f25c121445692 (diff)
downloadphp-git-06fdf359e3217f795fded77e337d5417426b8d64.tar.gz
typo fixes - https://github.com/vlajos/misspell_fixer
Diffstat (limited to 'ext/standard/image.c')
-rw-r--r--ext/standard/image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/image.c b/ext/standard/image.c
index 54159e3785..adeb1c5be6 100644
--- a/ext/standard/image.c
+++ b/ext/standard/image.c
@@ -461,7 +461,7 @@ static int php_read_APP(php_stream * stream, unsigned int marker, zval *info TSR
snprintf(markername, sizeof(markername), "APP%d", marker - M_APP0);
if ((tmp = zend_hash_str_find(Z_ARRVAL_P(info), markername, strlen(markername))) == NULL) {
- /* XXX we onyl catch the 1st tag of it's kind! */
+ /* XXX we only catch the 1st tag of it's kind! */
add_assoc_stringl(info, markername, buffer, length);
}
@@ -533,7 +533,7 @@ static struct gfxinfo *php_handle_jpeg (php_stream * stream, zval *info TSRMLS_D
case M_APP14:
case M_APP15:
if (info) {
- if (!php_read_APP(stream, marker, info TSRMLS_CC)) { /* read all the app markes... */
+ if (!php_read_APP(stream, marker, info TSRMLS_CC)) { /* read all the app marks... */
return result;
}
} else {