Fixed undiefined dst in cw_format_hexu.

FossilOrigin-Name: f3b926e54971b3677ddf3eb299ee05a1b321727cc6e4d18eef7f9d519ae518cc
This commit is contained in:
7u83@mail.ru 2016-03-05 12:41:11 +00:00
parent c7010763da
commit f1888d2503
1 changed files with 1 additions and 1 deletions

View File

@ -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)
/**