diff options
Diffstat (limited to 'ext2fs')
-rw-r--r-- | ext2fs/ChangeLog | 8 | ||||
-rw-r--r-- | ext2fs/ext2fs.c | 10 |
2 files changed, 13 insertions, 5 deletions
diff --git a/ext2fs/ChangeLog b/ext2fs/ChangeLog index 10e91628..85e0ad18 100644 --- a/ext2fs/ChangeLog +++ b/ext2fs/ChangeLog @@ -1,3 +1,11 @@ +2001-11-20 Neal H Walfield <neal@cs.uml.edu> + + (diskfs_synchronous): Removing superfuous zero initializer. + (store): Likewise. + (store_parsed): Likewise. + (diskfs_disk_name): Likewise. + (ext2_debug_flag): Likewise. + 2002-04-01 Neal H Walfield <neal@cs.uml.edu> * pager.c (diskfs_grow): Fix inverted logic. diff --git a/ext2fs/ext2fs.c b/ext2fs/ext2fs.c index c34ec4d4..64927f38 100644 --- a/ext2fs/ext2fs.c +++ b/ext2fs/ext2fs.c @@ -47,17 +47,17 @@ char *diskfs_server_name = "ext2fs"; char *diskfs_server_version = HURD_VERSION; char *diskfs_extra_version = "GNU Hurd; ext2 " EXT2FS_VERSION; -int diskfs_synchronous = 0; +int diskfs_synchronous; struct node *diskfs_root_node; -struct store *store = 0; -struct store_parsed *store_parsed = 0; +struct store *store; +struct store_parsed *store_parsed; -char *diskfs_disk_name = 0; +char *diskfs_disk_name; #ifdef EXT2FS_DEBUG -int ext2_debug_flag = 0; +int ext2_debug_flag; #endif /* Ext2fs-specific options. */ |