1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-21 22:04:19 +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 94b5aa0aad
commit 90a9a7785e

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)