From f1888d2503ac81b6ed2b10140bdc52d19299bb24 Mon Sep 17 00:00:00 2001 From: "7u83@mail.ru" <7u83@mail.ru@noemail.net> Date: Sat, 5 Mar 2016 12:41:11 +0000 Subject: [PATCH] Fixed undiefined dst in cw_format_hexu. FossilOrigin-Name: f3b926e54971b3677ddf3eb299ee05a1b321727cc6e4d18eef7f9d519ae518cc --- src/cw/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cw/format.h b/src/cw/format.h index c98b901c..e9d89292 100644 --- a/src/cw/format.h +++ b/src/cw/format.h @@ -51,7 +51,7 @@ extern int cw_format_scan_hex_bytes(uint8_t *dst,const char *s, int len); * Format bytes as hex string. Same as #cw_format_hexl, but * hexadecimal letters are upper-case. */ -#define cw_format_hexu\ +#define cw_format_hexu(dst,bytes,len)\ cw_format_hex_bytes(dst,"%02X","",bytes,len) /**