Re: Curly bracket question



On 2008-03-29, Grant Edwards <grante@xxxxxxxx> wrote:

I spent a few days battling with splint, and never got it to do
anything useful.

In order to elimiate warnings about code like this:

unsigned uint8_t b;
b = 5;

You had to turn off warnings for code like this:

unsigned uint8_t b;
b = 12345;

Oops. Disregard the "unsigned" in the above example.

--
Grant

.