From: Alexander Beregalov <a.beregalov@gmail.com>
To: mfasheh@suse.com, joel.becker@oracle.com,
ocfs2-devel@oss.oracle.com, linux-kernel@vger.kernel.org
Subject: [Ocfs2-devel] [PATCH] ocfs2/cluster/netdebug.c: fix warning
Date: Tue, 05 Aug 2008 20:12:20 -0000 [thread overview]
Message-ID: <20080805201036.GC17320@orion> (raw)
From: Alexander Beregalov <a.beregalov@gmail.com>
ocfs2/cluster/netdebug.c: fix warning
fs/ocfs2/cluster/netdebug.c:154: warning: format '%lu' expects
type 'long unsigned int', but argument 17 has type 'suseconds_t'
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
---
fs/ocfs2/cluster/netdebug.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/ocfs2/cluster/netdebug.c b/fs/ocfs2/cluster/netdebug.c
index d8bfa0e..cdc0ed2 100644
--- a/fs/ocfs2/cluster/netdebug.c
+++ b/fs/ocfs2/cluster/netdebug.c
@@ -151,7 +151,7 @@ static int nst_seq_show(struct seq_file *seq, void *v)
nst->st_send_time.tv_sec,
(unsigned long)nst->st_send_time.tv_usec,
nst->st_status_time.tv_sec,
- nst->st_status_time.tv_usec);
+ (unsigned long)nst->st_status_time.tv_usec);
}
spin_unlock(&o2net_debug_lock);
WARNING: multiple messages have this Message-ID (diff)
From: Alexander Beregalov <a.beregalov@gmail.com>
To: mfasheh@suse.com, joel.becker@oracle.com,
ocfs2-devel@oss.oracle.com, linux-kernel@vger.kernel.org
Subject: [PATCH] ocfs2/cluster/netdebug.c: fix warning
Date: Wed, 6 Aug 2008 00:10:36 +0400 [thread overview]
Message-ID: <20080805201036.GC17320@orion> (raw)
From: Alexander Beregalov <a.beregalov@gmail.com>
ocfs2/cluster/netdebug.c: fix warning
fs/ocfs2/cluster/netdebug.c:154: warning: format '%lu' expects
type 'long unsigned int', but argument 17 has type 'suseconds_t'
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
---
fs/ocfs2/cluster/netdebug.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/ocfs2/cluster/netdebug.c b/fs/ocfs2/cluster/netdebug.c
index d8bfa0e..cdc0ed2 100644
--- a/fs/ocfs2/cluster/netdebug.c
+++ b/fs/ocfs2/cluster/netdebug.c
@@ -151,7 +151,7 @@ static int nst_seq_show(struct seq_file *seq, void *v)
nst->st_send_time.tv_sec,
(unsigned long)nst->st_send_time.tv_usec,
nst->st_status_time.tv_sec,
- nst->st_status_time.tv_usec);
+ (unsigned long)nst->st_status_time.tv_usec);
}
spin_unlock(&o2net_debug_lock);
next reply other threads:[~2008-08-05 20:12 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-05 20:10 Alexander Beregalov [this message]
2008-08-05 20:12 ` [Ocfs2-devel] [PATCH] ocfs2/cluster/netdebug.c: fix warning Alexander Beregalov
2008-08-05 20:29 ` Joel Becker
2008-08-05 20:29 ` Joel Becker
2008-08-05 20:50 ` Alexander Beregalov
2008-08-05 20:51 ` [Ocfs2-devel] " Alexander Beregalov
2008-08-05 23:22 ` Joel Becker
2008-08-05 23:22 ` Joel Becker
2008-08-06 21:24 ` [Ocfs2-devel] " Mark Fasheh
2008-08-06 21:24 ` Mark Fasheh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080805201036.GC17320@orion \
--to=a.beregalov@gmail.com \
--cc=joel.becker@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mfasheh@suse.com \
--cc=ocfs2-devel@oss.oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.