Re: [OE-core] [meta-oe][sumo][PATCH] systemd: fix codesonar warnings

2020-08-07 Thread Quentin Schulz
Hi Amitanand, On Fri, Aug 07, 2020 at 08:01:47PM +0530, Amitanand N Chikorde wrote: > Fixed below systemd codesonar warnings. > 1. isprint() and isspace() is invoked here with an argument of signed > type char, but only has defined behavior for int arguments that are > either representable as unsi

[OE-core] [meta-oe][sumo][PATCH] systemd: fix codesonar warnings

2020-08-07 Thread Amitanand N Chikorde
Fixed below systemd codesonar warnings. 1. isprint() and isspace() is invoked here with an argument of signed type char, but only has defined behavior for int arguments that are either representable as unsigned char or equal to the value of macro EOF(-1). As per codesonar report, in a number of li

[OE-core] [meta-oe][sumo][PATCH] systemd: fix codesonar warnings

2020-08-06 Thread Amitanand N Chikorde
From: "Amitanand.Chikorde" Fixed below systemd codesonar warnings. 1. isprint() and isspace() is invoked here with an argument of signed type char, but only has defined behavior for int arguments that are either representable as unsigned char or equal to the value of macro EOF(-1). As per codeso