On Mon, Aug 3, 2020 at 9:11 AM Aschref Ben-Thabet
wrote:
>
> From: Aschref Ben Thabet
>
> The warning may be because you're passing a char to the isspace() macro.
>
> The implementation of isspace() may be via array indexing.
>
> This means that the index for the array can be negative.
>
> This c
Hello Aschref,
I think we should have a look how git rebase -i works later this week.
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel
From: Aschref Ben Thabet
The warning may be because you're passing a char to the isspace() macro.
The implementation of isspace() may be via array indexing.
This means that the index for the array can be negative.
This can be a problem as a char could represent a signed value, and you
may be r