aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs/ext2fs/jfs_dat.h
diff options
context:
space:
mode:
authortimr <timr@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-25 00:08:53 +0000
committertimr <timr@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-25 00:08:53 +0000
commitfd8222f9b9db2a783b17ec9c59cf3fc22a4e4586 (patch)
tree5f329b7d0c7f20ecced0dc7581a9ba6dc720d965 /e2fsprogs/ext2fs/jfs_dat.h
parent45d75f9ecc8f2b582407059da7d414f990ced68a (diff)
downloadbusybox-w32-fd8222f9b9db2a783b17ec9c59cf3fc22a4e4586.tar.gz
busybox-w32-fd8222f9b9db2a783b17ec9c59cf3fc22a4e4586.tar.bz2
busybox-w32-fd8222f9b9db2a783b17ec9c59cf3fc22a4e4586.zip
just whitespace
git-svn-id: svn://busybox.net/trunk/busybox@13584 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'e2fsprogs/ext2fs/jfs_dat.h')
-rw-r--r--e2fsprogs/ext2fs/jfs_dat.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/e2fsprogs/ext2fs/jfs_dat.h b/e2fsprogs/ext2fs/jfs_dat.h
index d6ad9c489..8ec5d3841 100644
--- a/e2fsprogs/ext2fs/jfs_dat.h
+++ b/e2fsprogs/ext2fs/jfs_dat.h
@@ -1,6 +1,6 @@
1/* 1/*
2 * jfs_dat.h --- stripped down header file which only contains the JFS 2 * jfs_dat.h --- stripped down header file which only contains the JFS
3 * on-disk data structures 3 * on-disk data structures
4 */ 4 */
5 5
6#define JFS_MAGIC_NUMBER 0xc03b3998U /* The first 4 bytes of /dev/random! */ 6#define JFS_MAGIC_NUMBER 0xc03b3998U /* The first 4 bytes of /dev/random! */
@@ -9,7 +9,7 @@
9 * On-disk structures 9 * On-disk structures
10 */ 10 */
11 11
12/* 12/*
13 * Descriptor block types: 13 * Descriptor block types:
14 */ 14 */
15 15
@@ -28,8 +28,8 @@ typedef struct journal_header_s
28} journal_header_t; 28} journal_header_t;
29 29
30 30
31/* 31/*
32 * The block tag: used to describe a single buffer in the journal 32 * The block tag: used to describe a single buffer in the journal
33 */ 33 */
34typedef struct journal_block_tag_s 34typedef struct journal_block_tag_s
35{ 35{
@@ -55,10 +55,10 @@ typedef struct journal_superblock_s
55 __u32 s_blocksize; /* journal device blocksize */ 55 __u32 s_blocksize; /* journal device blocksize */
56 __u32 s_maxlen; /* total blocks in journal file */ 56 __u32 s_maxlen; /* total blocks in journal file */
57 __u32 s_first; /* first block of log information */ 57 __u32 s_first; /* first block of log information */
58 58
59 /* Dynamic information describing the current state of the log */ 59 /* Dynamic information describing the current state of the log */
60 __u32 s_sequence; /* first commit ID expected in log */ 60 __u32 s_sequence; /* first commit ID expected in log */
61 __u32 s_start; /* blocknr of start of log */ 61 __u32 s_start; /* blocknr of start of log */
62 62
63} journal_superblock_t; 63} journal_superblock_t;
64 64