summaryrefslogtreecommitdiff
path: root/ext2fs
diff options
context:
space:
mode:
authorMarcus Brinkmann <marcus@gnu.org>2002-05-11 19:13:16 +0000
committerMarcus Brinkmann <marcus@gnu.org>2002-05-11 19:13:16 +0000
commitecd85d031588a3221cd9f8e329c891e52a92c8de (patch)
treeb88a9758967dd9e599c3c618eb140daf6b83a486 /ext2fs
parent96a290992c064723163cbc2e9fde743283991385 (diff)
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')
-rw-r--r--ext2fs/ChangeLog8
-rw-r--r--ext2fs/ext2fs.c10
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. */