bincimap

Log | Files | Refs | LICENSE

commit fe52926a4c0aae6336950d6e813ae855fb93bc21
parent 85590f390a6aa556b2bc45a5f5cdb1c9c9f37199
Author: Dominik Schmidt <dominik@schm1dt.ch>
Date:   Sun, 25 Oct 2020 13:33:12 +0100

Apply the gentoo glibc 2.10 patch

Diffstat:
Msrc/convert.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/convert.h b/src/convert.h @@ -111,7 +111,7 @@ namespace Binc { unsigned char c = *i; unsigned char d = *(i + 1); - char *t; + const char *t; if ((t = strchr(hexchars, c)) == 0) return "out of range"; n = (t - hexchars) << 4;