libext2fs: fix build failure on big endian systems

Fix a typo that we didn't notice because all the world's an x86.  :-)

Reported-by: jon ernst <jonernst07@gmail.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
crypto
Theodore Ts'o 2014-03-13 13:40:37 -04:00
parent 227239b10b
commit f9574ad0ba
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ void ext2fs_swap_mmp(struct mmp_struct *mmp)
errcode_t ext2fs_dirent_swab_in(ext2_filsys fs, char *buf, int flags)
{
return ext2fs_dirent_swab_in(fs, buf, fs->blocksize, flags);
return ext2fs_dirent_swab_in2(fs, buf, fs->blocksize, flags);
}
errcode_t ext2fs_dirent_swab_in2(ext2_filsys fs, char *buf,