From 26caaeae10414f9888a438ad8559692a7f74f918 Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Mon, 13 Dec 2010 00:13:15 +0000 Subject: protocol: fix warnings due to format string mismatches during invocation of gf_log. Signed-off-by: Raghavendra G Signed-off-by: Anand V. Avati BUG: 2211 ((re)introduce warnings for format string/parameter mismatch) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2211 --- xlators/protocol/client/src/client-lk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xlators/protocol/client/src/client-lk.c') diff --git a/xlators/protocol/client/src/client-lk.c b/xlators/protocol/client/src/client-lk.c index ee595225735..c018d537547 100644 --- a/xlators/protocol/client/src/client-lk.c +++ b/xlators/protocol/client/src/client-lk.c @@ -35,10 +35,10 @@ __dump_client_lock (client_posix_lock_t *lock) this = THIS; gf_log (this->name, GF_LOG_TRACE, - "{fd=%lld}" + "{fd=%p}" "{%s lk-owner:%"PRIu64" %"PRId64" - %"PRId64"}" "{start=%"PRId64" end=%"PRId64"}", - (unsigned long long)lock->fd, + lock->fd, lock->fl_type == F_WRLCK ? "Write-Lock" : "Read-Lock", lock->owner, lock->user_flock.l_start, @@ -581,7 +581,7 @@ construct_reserve_unlock (struct gf_flock *lock, call_frame_t *frame, lock->l_start = 0; lock->l_whence = SEEK_SET; lock->l_len = 0; /* Whole file */ - lock->l_pid = (uint64_t)frame->root; + lock->l_pid = (uint64_t)(unsigned long)frame->root; frame->root->lk_owner = client_lock->owner; -- cgit