write_mongodb: fix a couple of build warnings
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 8 Jul 2017 10:12:33 +0000 (12:12 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 8 Jul 2017 10:12:33 +0000 (12:12 +0200)
commitbea5daaed7b5cf9160207a95292947873fdcf927
treefa389e1ca6157baa6b9104f4c4ece4cfe17773b8
parent619755ece305a61ed7afb19ca5ca6054c4d43097
write_mongodb: fix a couple of build warnings

  CC       src/write_mongodb_la-write_mongodb.lo
src/write_mongodb.c:96:21: warning: comparison of integers of different signs: 'int' and 'const size_t' (aka 'const unsigned long') [-Wsign-compare]
  for (int i = 0; i < ds->ds_num; i++) {
                  ~ ^ ~~~~~~~~~~
src/write_mongodb.c:121:21: warning: comparison of integers of different signs: 'int' and 'const size_t' (aka 'const unsigned long') [-Wsign-compare]
  for (int i = 0; i < ds->ds_num; i++) {
                  ~ ^ ~~~~~~~~~~
src/write_mongodb.c:134:21: warning: comparison of integers of different signs: 'int' and 'const size_t' (aka 'const unsigned long') [-Wsign-compare]
  for (int i = 0; i < ds->ds_num; i++) {
                  ~ ^ ~~~~~~~~~~
3 warnings generated.
src/write_mongodb.c