diff options
Diffstat (limited to 'ext/util.c')
| -rw-r--r-- | ext/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ int bin2hex(char *hex, size_t hexsize, const uint8_t *bin, size_t binlen) { - static const char hex_chars[] = "0123456789ABCDEF"; + static const char hex_chars[] = "0123456789abcdef"; if (hex == NULL || bin == NULL || hexsize == 0) return -1; |