From ecd85d031588a3221cd9f8e329c891e52a92c8de Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Sat, 11 May 2002 19:13:16 +0000 Subject: 2001-11-20 Neal H Walfield (diskfs_synchronous): Removing superfuous zero initializer. (store): Likewise. (store_parsed): Likewise. (diskfs_disk_name): Likewise. (ext2_debug_flag): Likewise. --- ext2fs/ChangeLog | 8 ++++++++ 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 + + (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 * 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. */ -- cgit v1.2.3