Re: [PATCH -next] ceph: fix printk format warnings in file.c

2013-04-19 Thread Sage Weil
Applied, thanks! sage On Fri, 19 Apr 2013, Randy Dunlap wrote: > From: Randy Dunlap > > Fix printk format warnings by using %zd for 'ssize_t' variables: > > fs/ceph/file.c:751:2: warning: format '%ld' expects argument of type 'long > int', but argument 11 has type 'ssize_t' [-Wformat] >

[PATCH -next] ceph: fix printk format warnings in file.c

2013-04-19 Thread Randy Dunlap
From: Randy Dunlap Fix printk format warnings by using %zd for 'ssize_t' variables: fs/ceph/file.c:751:2: warning: format '%ld' expects argument of type 'long int', but argument 11 has type 'ssize_t' [-Wformat] fs/ceph/file.c:762:2: warning: format '%ld' expects argument of type 'long int',

[PATCH -next] ceph: fix printk format warnings in file.c

2013-04-19 Thread Randy Dunlap
From: Randy Dunlap rdun...@infradead.org Fix printk format warnings by using %zd for 'ssize_t' variables: fs/ceph/file.c:751:2: warning: format '%ld' expects argument of type 'long int', but argument 11 has type 'ssize_t' [-Wformat] fs/ceph/file.c:762:2: warning: format '%ld' expects argument

Re: [PATCH -next] ceph: fix printk format warnings in file.c

2013-04-19 Thread Sage Weil
Applied, thanks! sage On Fri, 19 Apr 2013, Randy Dunlap wrote: From: Randy Dunlap rdun...@infradead.org Fix printk format warnings by using %zd for 'ssize_t' variables: fs/ceph/file.c:751:2: warning: format '%ld' expects argument of type 'long int', but argument 11 has type 'ssize_t'