From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cuda.sgi.com (cuda2.sgi.com [192.48.176.25]) by oss.sgi.com (8.14.3/8.14.3/SuSE Linux 0.8) with ESMTP id o0EACjPp250490 for ; Thu, 14 Jan 2010 04:12:46 -0600 Received: from mail.internode.on.net (localhost [127.0.0.1]) by cuda.sgi.com (Spam Firewall) with ESMTP id DDD8616551B for ; Thu, 14 Jan 2010 02:13:41 -0800 (PST) Received: from mail.internode.on.net (bld-mail16.adl2.internode.on.net [150.101.137.101]) by cuda.sgi.com with ESMTP id cWYAKylb5aicDTKy for ; Thu, 14 Jan 2010 02:13:41 -0800 (PST) Received: from discord (unverified [121.44.236.168]) by mail.internode.on.net (SurgeMail 3.8f2) with ESMTP id 11528820-1927428 for ; Thu, 14 Jan 2010 20:43:39 +1030 (CDT) Received: from [192.168.1.6] (helo=disturbed) by discord with esmtp (Exim 4.69) (envelope-from ) id 1NVMht-0007rX-QW for xfs@oss.sgi.com; Thu, 14 Jan 2010 21:13:37 +1100 Received: from dave by disturbed with local (Exim 4.71) (envelope-from ) id 1NVMdg-0001LS-Ez for xfs@oss.sgi.com; Thu, 14 Jan 2010 21:09:16 +1100 From: Dave Chinner Subject: [PATCH 7/9] xfsprogs: fix print format warnings in xfs_io Date: Thu, 14 Jan 2010 21:09:10 +1100 Message-Id: <1263463752-5052-8-git-send-email-david@fromorbit.com> In-Reply-To: <1263463752-5052-1-git-send-email-david@fromorbit.com> References: <1263463752-5052-1-git-send-email-david@fromorbit.com> List-Id: XFS Filesystem from SGI List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: xfs-bounces@oss.sgi.com Errors-To: xfs-bounces@oss.sgi.com To: xfs@oss.sgi.com Signed-off-by: Dave Chinner --- io/madvise.c | 2 +- io/mincore.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/io/madvise.c b/io/madvise.c index cd16a4c..3235402 100644 --- a/io/madvise.c +++ b/io/madvise.c @@ -96,7 +96,7 @@ madvise_f( return 0; } else if (llength > (size_t)llength) { printf(_("length argument too large -- %lld\n"), - llength); + (long long)llength); return 0; } else length = (size_t)llength; diff --git a/io/mincore.c b/io/mincore.c index d534540..60625ef 100644 --- a/io/mincore.c +++ b/io/mincore.c @@ -56,7 +56,7 @@ mincore_f( return 0; } else if (llength > (size_t)llength) { printf(_("length argument too large -- %lld\n"), - llength); + (long long)llength); return 0; } else length = (size_t)llength; -- 1.6.5 _______________________________________________ xfs mailing list xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs