write_sensu: fix format-string portability problem
authorMarc Fournier <marc.fournier@camptocamp.com>
Wed, 29 Apr 2015 22:15:19 +0000 (00:15 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Wed, 29 Apr 2015 22:15:19 +0000 (00:15 +0200)
Casting counters, derives and abolutes to int64_t was incorrect, as they
are respectively `unsigned long long`, `int64_t` and `uint64_t`.
Apart from potentially loosing precision, the `%ld` format-string made
clang choke on the 32bit architecture (follow-up to 78340212).


No differences found