This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

cluster: STABLE3 - dlm_tool: fix format warnings


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=96d261a9cae37c23b807abb584138dd749feee5a
Commit:        96d261a9cae37c23b807abb584138dd749feee5a
Parent:        2025c4a4d207679f1c2fafe396b38d51d9379f23
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Wed May 6 07:05:55 2009 +0200
Committer:     David Teigland <teigland@redhat.com>
CommitterDate: Mon May 11 10:05:05 2009 -0500

dlm_tool: fix format warnings

cluster-stable3/dlm/tool/main.c: In function â??print_lkbâ??:
cluster-stable3/dlm/tool/main.c:668:
 warning: format â??%lluâ?? expects type â??long long unsigned int *â??, but argument 8 has type â??uint64_t *â??
cluster-stable3/dlm/tool/main.c:668:
 warning: format â??%lluâ?? expects type â??long long unsigned int *â??, but argument 18 has type â??uint64_t *â??
cluster-stable3/dlm/tool/main.c:668:
 warning: format â??%lluâ?? expects type â??long long unsigned int *â??, but argument 19 has type â??uint64_t *â??

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 dlm/tool/main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlm/tool/main.c b/dlm/tool/main.c
index 732ff28..c4d55c4 100644
--- a/dlm/tool/main.c
+++ b/dlm/tool/main.c
@@ -647,7 +647,7 @@ static void print_lkb(char *line, struct rinfo *ri)
 	char type[4];
 	int rv;
 
-	rv = sscanf(line, "%s %x %d %x %u %llu %x %x %d %d %d %d %d %d %u %llu %llu",
+	rv = sscanf(line, "%s %x %d %x %u %"PRIu64" %x %x %d %d %d %d %d %d %u %"PRIu64" %"PRIu64,
 		    type,
 		    &lkb.id,
 		    &lkb.nodeid,


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]