From 16f7272751b3eee3ede086ddf6b5b1dd718a90e0 Mon Sep 17 00:00:00 2001 From: Hay1tsme Date: Thu, 14 Mar 2024 11:12:48 -0400 Subject: [PATCH] epay: fix print statement to work with other compilers, fixes #4 --- platform/epay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/epay.c b/platform/epay.c index 0faf145..e34591e 100644 --- a/platform/epay.c +++ b/platform/epay.c @@ -236,7 +236,7 @@ static HRESULT misc_read_network_timeout1(void *bytes, uint32_t *nbytes) static uint64_t thinca_initialize(struct thinca_impl * self, uint64_t val) { - dprintf("Epay: Thinca Initialize %lld\n", val); + dprintf("Epay: Thinca Initialize v%I64X\n", val); return 0; }