[PATCH] 2.5-bk K&R to ANSI conversions for fs/jfs/jfs_dmap.c and

Steven Cole (elenstev@mesatop.com)
10 Jun 2003 19:32:44 -0600


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;

-
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/