1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

gcc: keep unsigned arithmetic

Avoid conversion to int.
This commit is contained in:
Zdenek Kabelac 2020-08-28 19:55:01 +02:00
parent ff4827ffb1
commit ce202c3b1c

View File

@ -66,7 +66,7 @@ struct cb_set {
static struct cb_set *_cb_set_create(unsigned nr)
{
int i;
unsigned i;
struct cb_set *cbs = malloc(sizeof(*cbs));
if (!cbs)