Skip to content

Commit

Permalink
ext2: fix typo in Hurd part of include/linux/ext2_fs.h
Browse files Browse the repository at this point in the history
Fix typo in Hurd part of include/linux/ext2_fs.h

The ';' here is redundant or can even pose problem.  This is actually not
used by the Linux kernel, but it is exposed in GNU/Hurd.

Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Samuel Thibault authored and Linus Torvalds committed Jul 25, 2008
1 parent f905f06 commit 50c33a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/linux/ext2_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ struct ext2_inode {

#ifdef __hurd__
#define i_translator osd1.hurd1.h_i_translator
#define i_frag osd2.hurd2.h_i_frag;
#define i_fsize osd2.hurd2.h_i_fsize;
#define i_frag osd2.hurd2.h_i_frag
#define i_fsize osd2.hurd2.h_i_fsize
#define i_uid_high osd2.hurd2.h_i_uid_high
#define i_gid_high osd2.hurd2.h_i_gid_high
#define i_author osd2.hurd2.h_i_author
Expand Down

0 comments on commit 50c33a8

Please sign in to comment.