Fix regparm attribute of fhandler_base::fstat_helper

* winsup/cygwin/fhandler_disk_file.cc (fhandler_base::fstat_helper):
Align regparm attribute to declaration in fhandler.h.
This commit is contained in:
Ken Brown 2015-12-11 17:08:28 -05:00 committed by Corinna Vinschen
parent eed35efbe6
commit ecfba2bb2c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2015-12-11 Ken Brown <kbrown@cornell.edu>
* fhandler_disk_file.cc (fhandler_base::fstat_helper): Align
regparm attribute to declaration in fhandler.h.
2015-12-10 Corinna Vinschen <corinna@vinschen.de>
* path.h (class path_conv_handle): Use FILE_ALL_INFORMATION instead of

View File

@ -428,7 +428,7 @@ fhandler_base::fstat_fs (struct stat *buf)
return res;
}
int __reg3
int __reg2
fhandler_base::fstat_helper (struct stat *buf)
{
IO_STATUS_BLOCK st;