all repos — hex @ 19dc382da83df50e0e5606211c82f21d89532261

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Fixes.
h3rald h3rald@h3rald.com
Sun, 01 Dec 2024 06:52:02 +0000
commit

19dc382da83df50e0e5606211c82f21d89532261

parent

38a969487738091b0609cd0c3f32ee86ec8c480f

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M hex.chex.c

@@ -912,7 +912,7 @@ {

switch (item.type) { case HEX_TYPE_INTEGER: - fprintf(stream, "0x%xx", item.data.intValue); + fprintf(stream, "0x%x", item.data.intValue); break; case HEX_TYPE_STRING: fprintf(stream, "%s", item.data.strValue);