From 287fa79a6aefb25f21f51d2001a008a7d2dc89cf Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Thu, 1 Nov 2001 10:39:54 +0000 Subject: [PATCH] Fixed the type of st_dev in stat. svn path=/trunk/; revision=2333 --- reactos/include/msvcrt/sys/stat.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/include/msvcrt/sys/stat.h b/reactos/include/msvcrt/sys/stat.h index 8c4ec72a0ac..e2e244077f6 100644 --- a/reactos/include/msvcrt/sys/stat.h +++ b/reactos/include/msvcrt/sys/stat.h @@ -19,9 +19,9 @@ * DISCLAMED. This includes but is not limited to warranties of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * $Revision: 1.2 $ - * $Author: ekohl $ - * $Date: 2001/07/03 22:16:07 $ + * $Revision: 1.3 $ + * $Author: hbirr $ + * $Date: 2001/11/01 10:39:54 $ * */ @@ -88,7 +88,7 @@ typedef __WCHAR_TYPE__ wchar_t; */ struct stat { - short st_dev; /* Equivalent to drive number 0=A 1=B ... */ + long st_dev; /* Equivalent to drive number 0=A 1=B ... */ short st_ino; /* Always zero ? */ short st_mode; /* See above constants */ short st_nlink; /* Number of links. */