aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorGravatar Tim Segers <tsegers@pm.me>2025-12-07 19:36:36 +0100
committerGravatar Tim Segers <tsegers@pm.me>2025-12-07 19:36:36 +0100
commita039778b4e979a391bb468a20f2d2177211c056c (patch)
tree2b563279a4e52ebf158172be1ea2b7a2679de659 /ext
parent27ac4a54713ddff68aa3a73353042f0a1b4acd6c (diff)
downloadtweetpipe-a039778b4e979a391bb468a20f2d2177211c056c.tar.gz
Make bin2hex lowercase
Diffstat (limited to 'ext')
-rw-r--r--ext/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/util.c b/ext/util.c
index 42fe8ac..7e59abc 100644
--- a/ext/util.c
+++ b/ext/util.c
@@ -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;