]> granicus.if.org Git - php/commitdiff
fix comment
authorStanislav Malyshev <stas@php.net>
Wed, 11 Jul 2012 05:31:24 +0000 (22:31 -0700)
committerStanislav Malyshev <stas@php.net>
Sat, 14 Jul 2012 21:50:50 +0000 (14:50 -0700)
ext/standard/string.c

index e5da0a4fb970af86aba656e6c0f3d30ed8fa0b49..6cc7659edd860c6df59a1381798d607e511e5e79 100644 (file)
@@ -13,7 +13,7 @@
    | license@php.net so we can mail you a copy immediately.               |
    +----------------------------------------------------------------------+
    | Authors: Rasmus Lerdorf <rasmus@php.net>                             |
-   |          Stig Sther Bakken <ssb@php.net>                            |
+   |          Stig Sæther Bakken <ssb@php.net>                            |
    |          Zeev Suraski <zeev@zend.com>                                |
    +----------------------------------------------------------------------+
  */
@@ -132,7 +132,7 @@ static char *php_bin2hex(const unsigned char *old, const size_t oldlen, size_t *
        size_t i, j;
 
        result = (unsigned char *) safe_emalloc(oldlen, 2 * sizeof(char), 1);
-
+       
        for (i = j = 0; i < oldlen; i++) {
                result[j++] = hexconvtab[old[i] >> 4];
                result[j++] = hexconvtab[old[i] & 15];