* [PATCH] 2.5-bk K&R to ANSI conversions for fs/jfs/jfs_dmap.c and jfs_xtree.c
@ 2003-06-11 1:32 Steven Cole
0 siblings, 0 replies; only message in thread
From: Steven Cole @ 2003-06-11 1:32 UTC (permalink / raw)
To: Dave Kleikamp; +Cc: Dave Olien, Linus Torvalds, linux-kernel
This patch removes the first of the following warnings when doing
make C=1 bzImage with the sparse checker cleverly installed as
/usr/local/bin/sparse.
CHECK fs/jfs/jfs_dmap.c
warning: fs/jfs/jfs_dmap.c:3053:14: non-ANSI parameter list
warning: fs/jfs/jfs_dmap.c:1315:10: not addressable
warning: fs/jfs/jfs_dmap.c:1792:8: not addressable
warning: fs/jfs/jfs_dmap.c:3441:10: not addressable
CC fs/jfs/jfs_dmap.o
No "non-ANSI parameter list" warnings for fs/jfs/jfs_xtree.c were
received, presumably because _JFS_WIP wasn't defined. This patch
converts the xtGather function declaration anyway.
Steven
diff -ur bk-current/fs/jfs/jfs_dmap.c linux/fs/jfs/jfs_dmap.c
--- bk-current/fs/jfs/jfs_dmap.c 2003-06-09 18:36:51.000000000 -0600
+++ linux/fs/jfs/jfs_dmap.c 2003-06-09 22:02:27.000000000 -0600
@@ -3050,7 +3050,7 @@
* RETURN VALUES:
* none
*/
-void fsDirty()
+void fsDirty(void)
{
printk("fsDirty(): bye-bye\n");
assert(0);
diff -ur bk-current/fs/jfs/jfs_xtree.c linux/fs/jfs/jfs_xtree.c
--- bk-current/fs/jfs/jfs_xtree.c 2003-06-09 18:34:10.000000000 -0600
+++ linux/fs/jfs/jfs_xtree.c 2003-06-09 22:02:50.000000000 -0600
@@ -4225,8 +4225,7 @@
* at the current entry at the current subtree root page
*
*/
-int xtGather(t)
-btree_t *t;
+int xtGather(btree_t *t)
{
int rc = 0;
xtpage_t *p;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-06-11 1:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-06-11 1:32 [PATCH] 2.5-bk K&R to ANSI conversions for fs/jfs/jfs_dmap.c and jfs_xtree.c Steven Cole
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox