global: Do not assert >= 0 for unsigned values
authorAlexandru Gagniuc <mr.nuke.me@gmail.com>
Tue, 8 Jan 2013 20:25:56 +0000 (14:25 -0600)
committerAlexandru Gagniuc <mr.nuke.me@gmail.com>
Tue, 8 Jan 2013 20:46:16 +0000 (14:46 -0600)
Unsigned values are always >= 0. These assertions are redundant, so remove them.

$ grep assert -r ./ |grep ">=" |grep 0
shows the assert(something >= 0). Remove those which assert(unsigned >= 0).

Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>

No differences found