diff options
| author | Dave Jones <davej@suse.de> | 2002-04-03 22:23:37 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@penguin.transmeta.com> | 2002-04-03 22:23:37 -0800 |
| commit | 46179f95eb46c5536f099e1e66939d31be06ecc7 (patch) | |
| tree | 26dcc0deaeec47f8d68c3cf8e66f357280504a2c | |
| parent | 0939e16d32a98c9e997c0d2aef1b08d8eaa68607 (diff) | |
[PATCH] bss bits for isofs
Originally from the kernel janitor folks
| -rw-r--r-- | fs/isofs/compress.c | 2 | ||||
| -rw-r--r-- | fs/isofs/inode.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fs/isofs/compress.c b/fs/isofs/compress.c index 62650e9a2bd3..8a0e9b08663e 100644 --- a/fs/isofs/compress.c +++ b/fs/isofs/compress.c @@ -330,7 +330,7 @@ struct address_space_operations zisofs_aops = { /* No bmap operation supported */ }; -static int initialized = 0; +static int initialized; int __init zisofs_init(void) { diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index d4e9ad9a6dd3..2589f9717e21 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c @@ -42,8 +42,8 @@ #define BEQUIET #ifdef LEAK_CHECK -static int check_malloc = 0; -static int check_bread = 0; +static int check_malloc; +static int check_bread; #endif static int isofs_hashi(struct dentry *parent, struct qstr *qstr); |
