From: Markus Armbruster Date: Thu, 14 May 2015 07:03:27 +0000 (+0200) Subject: xundump: Pass unsigned * for scanf directive %3o, not int * X-Git-Tag: v4.3.33~5 X-Git-Url: http://git.pond.sub.org/?p=empserver;a=commitdiff_plain;h=7f68f374338955381f83b9732412a1a8e5bbac97;ds=sidebyside xundump: Pass unsigned * for scanf directive %3o, not int * Signed-off-by: Markus Armbruster --- diff --git a/src/lib/common/xundump.c b/src/lib/common/xundump.c index 4f2041940..277701735 100644 --- a/src/lib/common/xundump.c +++ b/src/lib/common/xundump.c @@ -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;