1 From fdfeff0462e17e0f0e37e65e5b6be6e74a9b39fd Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Tue, 2 Sep 2014 22:43:44 +0200
4 Subject: [PATCH 4/4] examples: fix uint64_t formatting issues
6 Using %lu to format uint64_t doesn't work for 32 bits architecture,
7 because uint64_t is an unsigned long long and therefore %llu should be
8 used. The solution is to use PRIu64 from <inttypes.h>, which is equal
9 to %lu on 64 bits architectures, and %llu on 32 bits architectures,
10 which corresponds to the definition of uint64_t.
12 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 examples/iscsi-dd.c | 5 +++--
15 1 file changed, 3 insertions(+), 2 deletions(-)
17 diff --git a/examples/iscsi-dd.c b/examples/iscsi-dd.c
18 index 4cc7c2b..33007c3 100644
19 --- a/examples/iscsi-dd.c
20 +++ b/examples/iscsi-dd.c
25 +#include <inttypes.h>
29 @@ -79,7 +80,7 @@ void write_cb(struct iscsi_context *iscsi, int status, void *command_data, void
30 fill_read_queue(client);
32 if (client->progress) {
33 - printf("\r%lu of %lu blocks transferred.", client->pos, client->src_num_blocks);
34 + printf("\r%" PRIu64 " of %" PRIu64 " blocks transferred.", client->pos, client->src_num_blocks);
37 if ((client->in_flight == 0) && (client->pos == client->src_num_blocks)) {
38 @@ -378,7 +379,7 @@ int main(int argc, char *argv[])
41 if (client.src_num_blocks > client.dst_num_blocks) {
42 - fprintf(stderr, "source LUN is bigger than destination (%lu > %lu sectors)\n", client.src_num_blocks, client.dst_num_blocks);
43 + fprintf(stderr, "source LUN is bigger than destination (%" PRIu64 " > %" PRIu64 " sectors)\n", client.src_num_blocks, client.dst_num_blocks);