From 361c804e9d70bd5a1c38eae1944635ca127c9ed9 Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Mon, 13 Dec 2010 03:34:05 +0000 Subject: nfs: 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/nfs/server/src/nfs3-fh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xlators/nfs/server/src/nfs3-fh.c') diff --git a/xlators/nfs/server/src/nfs3-fh.c b/xlators/nfs/server/src/nfs3-fh.c index 49236d609f8..be5a3017c3b 100644 --- a/xlators/nfs/server/src/nfs3-fh.c +++ b/xlators/nfs/server/src/nfs3-fh.c @@ -200,8 +200,8 @@ nfs3_log_fh (struct nfs3_fh *fh) uuid_unparse (fh->gfid, gfidstr); uuid_unparse (fh->exportid, exportidstr); - gf_log ("nfs3-fh", GF_LOG_TRACE, "filehandle: hashcount %d, exportid %d" - ", gfid 0x%s", fh->hashcount, exportidstr, gfidstr); + gf_log ("nfs3-fh", GF_LOG_TRACE, "filehandle: hashcount %d, exportid " + "0x%s, gfid 0x%s", fh->hashcount, exportidstr, gfidstr); /* for (; x < fh->hashcount; ++x) gf_log ("FILEHANDLE", GF_LOG_TRACE, "Hash %d: %d", x, -- cgit