ChangeLog, ismounted.c:

ismounted.c (ext2fs_check_if_mounted): Fix grammer in comment.  Remove
  	unneeded #pragma argsused, since the arguments are always used.
bitmap-optimize
Theodore Ts'o 2001-06-14 07:00:55 +00:00
parent f76ad46200
commit 6bd134809c
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2001-06-14 Theodore Tso <tytso@valinux.com>
* ismounted.c (ext2fs_check_if_mounted): Fix grammer in comment.
Remove unneeded #pragma argsused, since the arguments are
always used.
2001-06-13 Theodore Tso <tytso@valinux.com>
* ext2_types.h.in: If linux/types.h has been defined, then don't

View File

@ -183,13 +183,10 @@ errcode_t ext2fs_check_mount_point(const char *device, int *mount_flags,
}
/*
* ext2fs_check_if_mounted() sets the mount_flags EXT2_MF_MOUNTED and
* ext2fs_check_if_mounted() sets the mount_flags EXT2_MF_MOUNTED,
* EXT2_MF_READONLY, and EXT2_MF_ROOT
*
*/
#ifdef __TURBOC__
#pragma argsused
#endif
errcode_t ext2fs_check_if_mounted(const char *file, int *mount_flags)
{
return ext2fs_check_mount_point(file, mount_flags, NULL, 0);