diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-05-11 19:13:16 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-05-11 19:13:16 +0000 |
commit | ecd85d031588a3221cd9f8e329c891e52a92c8de (patch) | |
tree | b88a9758967dd9e599c3c618eb140daf6b83a486 /ext2fs/ext2fs.c | |
parent | 96a290992c064723163cbc2e9fde743283991385 (diff) | |
download | hurd-ecd85d031588a3221cd9f8e329c891e52a92c8de.tar.gz hurd-ecd85d031588a3221cd9f8e329c891e52a92c8de.tar.bz2 hurd-ecd85d031588a3221cd9f8e329c891e52a92c8de.zip |
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.
Diffstat (limited to 'ext2fs/ext2fs.c')
-rw-r--r-- | ext2fs/ext2fs.c | 10 |
1 files changed, 5 insertions, 5 deletions
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. */ |