From bbdfe97cc6b3ba6582fedc833717c3f1590d16f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 5 May 2016 23:25:11 +0200 Subject: [PATCH] make b2s 64 bits capable --- global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.h b/global.h index ae9beb9..184ae25 100644 --- a/global.h +++ b/global.h @@ -90,5 +90,5 @@ int _write(int file, char *ptr, int len); * @param[in] rjust justify representation with leading zeros * @return string with binary representation of the number */ -char* b2s(uint32_t binary, uint8_t rjust); +char* b2s(uint64_t binary, uint8_t rjust);