Commit ea609f54 authored by Andrew Morton's avatar Andrew Morton Committed by Jens Axboe

[PATCH] JFS build fix with gcc-2.95.3

I'm getting a build error:

	fs/jfs/super.c: In function `jfs_fill_super':
	fs/jfs/super.c:335: parse error before `)'

and it doesn't happen with gcc-3.2.x.

Taking out the file-n-line fixes it up.  This patch was acked by shaggy.
parent 9c57693e
......@@ -89,8 +89,7 @@ extern void dump_mem(char *label, void *data, int length);
/* error event message: e.g., i/o error */
#define jfs_err(fmt, arg...) do { \
if (jfsloglevel >= JFS_LOGLEVEL_ERR) \
printk(KERN_ERR "%s:%d " fmt "\n", \
__FILE__, __LINE__, ## arg); \
printk(KERN_ERR fmt "\n", ## arg); \
} while (0)
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment