Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751237AbWIHW4j (ORCPT ); Fri, 8 Sep 2006 18:56:39 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751249AbWIHWzc (ORCPT ); Fri, 8 Sep 2006 18:55:32 -0400 Received: from tetsuo.zabbo.net ([207.173.201.20]:20107 "EHLO tetsuo.zabbo.net") by vger.kernel.org with ESMTP id S1751245AbWIHWzY (ORCPT ); Fri, 8 Sep 2006 18:55:24 -0400 From: Zach Brown To: Andrew Morton , linux-kernel@vger.kernel.org Message-Id: <20060908225524.9340.12010.sendpatchset@kaori.pdx.zabbo.net> In-Reply-To: <20060908225438.9340.69862.sendpatchset@kaori.pdx.zabbo.net> References: <20060908225438.9340.69862.sendpatchset@kaori.pdx.zabbo.net> Subject: [PATCH 9/10] trident: use size_t length modifier in pr_debug format arguments Date: Fri, 8 Sep 2006 15:55:24 -0700 (PDT) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1205 Lines: 35 trident: use size_t length modifier in pr_debug format arguments Signed-off-by: Zach Brown --- sound/oss/trident.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: 2.6.18-rc6-debug-args/sound/oss/trident.c =================================================================== --- 2.6.18-rc6-debug-args.orig/sound/oss/trident.c +++ 2.6.18-rc6-debug-args/sound/oss/trident.c @@ -1873,7 +1873,7 @@ trident_read(struct file *file, char __u unsigned swptr; int cnt; - pr_debug("trident: trident_read called, count = %d\n", count); + pr_debug("trident: trident_read called, count = %zd\n", count); VALIDATE_STATE(state); @@ -1989,7 +1989,7 @@ trident_write(struct file *file, const c unsigned int copy_count; int lret; /* for lock_set_fmt */ - pr_debug("trident: trident_write called, count = %d\n", count); + pr_debug("trident: trident_write called, count = %zd\n", count); VALIDATE_STATE(state); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/