Skip to content
Snippets Groups Projects
Commit 61d9a11c authored by Niels Möller's avatar Niels Möller
Browse files

Don't use the UINT8 type with va_arg.

Rev: src/format.c:1.18
parent b4a7471d
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ UINT32 ssh_vformat_length(char *f, va_list args) ...@@ -102,7 +102,7 @@ UINT32 ssh_vformat_length(char *f, va_list args)
break; break;
case 'c': case 'c':
(void) va_arg(args, UINT8); (void) va_arg(args, int);
/* Fall through */ /* Fall through */
case '%': case '%':
f++; f++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment