diff options
author | Veres Lajos <vlajos@gmail.com> | 2013-07-13 13:37:04 +0100 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-07-15 00:19:49 -0700 |
commit | 1b06e0be96774eeb59a59b80476213a8b98a8fdc (patch) | |
tree | c4fe348b1f1ca872dbf58a6c643534e92be25715 /ext/exif | |
parent | d17e8ac32fe1f4bbf92c4bac1826d83d8372df95 (diff) | |
download | php-git-1b06e0be96774eeb59a59b80476213a8b98a8fdc.tar.gz |
typo fixes
Diffstat (limited to 'ext/exif')
-rw-r--r-- | ext/exif/exif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/exif/exif.c b/ext/exif/exif.c index c691075898..bd646d9adf 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -2595,7 +2595,7 @@ static int exif_process_string_raw(char **result, char *value, size_t byte_count /* {{{ exif_process_string * Copy a string in Exif header to a character string and return length of allocated buffer if any. - * In contrast to exif_process_string this function does allways return a string buffer */ + * In contrast to exif_process_string this function does always return a string buffer */ static int exif_process_string(char **result, char *value, size_t byte_count TSRMLS_DC) { /* we cannot use strlcpy - here the problem is that we cannot use strlen to * determin length of string and we cannot use strlcpy with len=byte_count+1 |