diff options
Diffstat (limited to 'xlators/protocol/server/src/server.c')
| -rw-r--r-- | xlators/protocol/server/src/server.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/protocol/server/src/server.c b/xlators/protocol/server/src/server.c index e1ec5512510..cf8e40eaad0 100644 --- a/xlators/protocol/server/src/server.c +++ b/xlators/protocol/server/src/server.c @@ -979,9 +979,9 @@ server_dump_metrics(xlator_t *this, int fd)          if (!client)              continue; -        dprintf(fd, "%s.total.rpc.%s.bytes_read %lu\n", this->name, +        dprintf(fd, "%s.total.rpc.%s.bytes_read %" PRIu64 "\n", this->name,                  client->client_uid, xprt->total_bytes_read); -        dprintf(fd, "%s.total.rpc.%s.bytes_write %lu\n", this->name, +        dprintf(fd, "%s.total.rpc.%s.bytes_write %" PRIu64 "\n", this->name,                  client->client_uid, xprt->total_bytes_write);          dprintf(fd, "%s.total.rpc.%s.outstanding %d\n", this->name,                  client->client_uid, xprt->outstanding_rpc_count);  | 
