mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
Fix building using gcc-2.95
svn path=/trunk/; revision=3502
This commit is contained in:
parent
347f421015
commit
50bd524398
1 changed files with 3 additions and 4 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: dirctl.c,v 1.10 2002/09/13 18:51:01 hbirr Exp $
|
||||
/* $Id: dirctl.c,v 1.11 2002/09/14 13:10:45 guido Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -56,10 +56,9 @@ CdfsGetEntryName(PDEVICE_EXTENSION DeviceExt,
|
|||
* FUNCTION: Retrieves the file name, be it in short or long file name format
|
||||
*/
|
||||
{
|
||||
PDIR_RECORD Record;
|
||||
Record = *Ptr;
|
||||
PDIR_RECORD Record = *Ptr;
|
||||
ULONG Index;
|
||||
|
||||
|
||||
if (*CurrentOffset >= DirLength)
|
||||
return(STATUS_NO_MORE_ENTRIES);
|
||||
|
||||
|
|
Loading…
Reference in a new issue