xundump: Pass unsigned * for scanf directive %3o, not int *

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2015-05-14 09:03:27 +02:00
parent a96c43c723
commit 7f68f37433

View file

@ -714,7 +714,8 @@ static char *
xuesc(char *buf)
{
char *src, *dst;
int octal_chr, n;
unsigned octal_chr;
int n;
dst = buf;
src = buf;