diff options
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ struct testcase { }; static void -hex(char *out, const unsigned char *in, size_t n) +hex(char *restrict out, const unsigned char *restrict in, size_t n) { for (; n--; in++) { *out++ = "0123456789abcdef"[(*in >> 4) & 15]; |