Skip to content

Commit 3b05733

Browse files
committed
fix comment
1 parent c164e6b commit 3b05733

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/standard/string.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
| [email protected] so we can mail you a copy immediately. |
1414
+----------------------------------------------------------------------+
1515
| Authors: Rasmus Lerdorf <[email protected]> |
16-
| Stig S�ther Bakken <[email protected]> |
16+
| Stig Sæther Bakken <[email protected]> |
1717
| Zeev Suraski <[email protected]> |
1818
+----------------------------------------------------------------------+
1919
*/
@@ -132,7 +132,7 @@ static char *php_bin2hex(const unsigned char *old, const size_t oldlen, size_t *
132132
size_t i, j;
133133

134134
result = (unsigned char *) safe_emalloc(oldlen, 2 * sizeof(char), 1);
135-
135+
136136
for (i = j = 0; i < oldlen; i++) {
137137
result[j++] = hexconvtab[old[i] >> 4];
138138
result[j++] = hexconvtab[old[i] & 15];

0 commit comments

Comments
 (0)