diff options
author | fjoe <fjoe@FreeBSD.org> | 2004-01-09 16:35:54 +0800 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2004-01-09 16:35:54 +0800 |
commit | 566eec59f9ae245e34787e5d2b10e94516888307 (patch) | |
tree | b17f442953c4b3c48072017507b189406104d092 | |
parent | 53062c249dbba5bd6e397bc3237ed00649a3d853 (diff) | |
download | freebsd-ports-gnome-566eec59f9ae245e34787e5d2b10e94516888307.tar.gz freebsd-ports-gnome-566eec59f9ae245e34787e5d2b10e94516888307.tar.zst freebsd-ports-gnome-566eec59f9ae245e34787e5d2b10e94516888307.zip |
j_mount_id should be __u32.
-rw-r--r-- | sysutils/grub/files/patch-stage2_fsys_reiserfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/grub/files/patch-stage2_fsys_reiserfs.c b/sysutils/grub/files/patch-stage2_fsys_reiserfs.c index becc81d01f95..55abe969dff7 100644 --- a/sysutils/grub/files/patch-stage2_fsys_reiserfs.c +++ b/sysutils/grub/files/patch-stage2_fsys_reiserfs.c @@ -5,7 +5,7 @@ __u32 j_first_unflushed_offset; /* mount id to detect very old transactions */ - __u32 long j_mount_id; -+ __u64 j_mount_id; ++ __u32 j_mount_id; }; /* magic string to find desc blocks in the journal */ |