diff options
Diffstat (limited to 'ext/standard/image.c')
-rw-r--r-- | ext/standard/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/image.c b/ext/standard/image.c index 0a8add7e99..425d210ba6 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -980,7 +980,7 @@ static int php_get_wbmp(php_stream *stream, struct gfxinfo **result, int check) return 0; } height = (height << 7) | (i & 0x7f); - /* maximum valid heigth for wbmp (although 127 may be a more accurate one) */ + /* maximum valid height for wbmp (although 127 may be a more accurate one) */ if (height > 2048) { return 0; } |