[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20090804184859.2155e866.randy.dunlap@oracle.com>
Date: Tue, 4 Aug 2009 18:48:59 -0700
From: Randy Dunlap <randy.dunlap@...cle.com>
To: akpm@...ux-foundation.org
Cc: linux-kernel@...r.kernel.org, gregkh@...e.de
Subject: [PATCH -mmotm] staging/udlfb: fix printk format warning
From: Randy Dunlap <randy.dunlap@...cle.com>
Fix printk format warning: use %td for ptrdiff:
drivers/staging/udlfb/udlfb.h:209: warning: format '%d' expects type 'int', but argument 3 has type 'long int'
Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>
---
drivers/staging/udlfb/udlfb.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- mmotm-2009-0804-1422.orig/drivers/staging/udlfb/udlfb.h
+++ mmotm-2009-0804-1422/drivers/staging/udlfb/udlfb.h
@@ -205,7 +205,7 @@ static int dlfb_set_video_mode(struct dl
/* send */
ret = dlfb_bulk_msg(dev_info, bufptr - dev_info->buf);
- printk("ret bulk 2: %d %d\n", ret,
+ printk("ret bulk 2: %d %td\n", ret,
bufptr - dev_info->buf);
/* flush */
---
~Randy
LPC 2009, Sept. 23-25, Portland, Oregon
http://linuxplumbersconf.org/2009/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists