summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8508c65)
raw | patch | inline | side by side (parent: 8508c65)
author | Marc Fournier <marc.fournier@camptocamp.com> | |
Tue, 2 Dec 2014 11:51:10 +0000 (12:51 +0100) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Wed, 10 Dec 2014 14:33:12 +0000 (15:33 +0100) |
Fixes build error on 32bit systems
src/ceph.c | patch | blob | history |
diff --git a/src/ceph.c b/src/ceph.c
index 5726e0103581647b3cd0a96908e5492437903ede..645c27c98f89b723e0516e445127c35c30774c88 100644 (file)
--- a/src/ceph.c
+++ b/src/ceph.c
{
double sum, result;
sscanf(val, "%lf", &sum);
- DEBUG("avgcount:%ld",vtmp->avgcount);
+ DEBUG("avgcount:%" PRIu64 "",vtmp->avgcount);
DEBUG("sum:%lf",sum);
if(vtmp->avgcount == 0)