Hello!
'Lastest' (with 's') is a typo.
The patch fixes or replaces it in several places.
Index: include/reactos/libs/fmifs/fmifs.h
===================================================================
--- include/reactos/libs/fmifs/fmifs.h (revision 61786)
+++ include/reactos/libs/fmifs/fmifs.h (working copy)
@@ -148,7 +148,7 @@
IN OUT PWCHAR FileSystem, /* FIXME: Probably one minimal size is
mandatory, but which one? */
OUT UCHAR* Major,
OUT UCHAR* Minor,
- OUT BOOLEAN* LastestVersion);
+ OUT BOOLEAN* LatestVersion);
BOOL NTAPI
QueryDeviceInformation(
Index: base/system/format/format.c
===================================================================
--- base/system/format/format.c (revision 61786)
+++ base/system/format/format.c (working copy)
@@ -276,7 +276,7 @@
WCHAR szFormatW[MAX_PATH];
DWORD Index = 0;
BYTE dummy;
- BOOLEAN lastestVersion;
+ BOOLEAN latestVersion;
LoadStringAndOem( GetModuleHandle(NULL), STRING_HELP, (LPTSTR)
szMsg,RC_STRING_MAX_SIZE);
if (!LoadFMIFSEntryPoints())
@@ -286,9 +286,9 @@
}
szFormats[0] = 0;
- while (QueryAvailableFileSystemFormat(Index++, szFormatW, &dummy,
&dummy, &lastestVersion))
+ while (QueryAvailableFileSystemFormat(Index++, szFormatW, &dummy,
&dummy, &latestVersion))
{
- if (!lastestVersion)
+ if (!latestVersion)
continue;
if (szFormats[0])
_tcscat(szFormats, _T(", "));
Index: dll/win32/setupapi/devinst.c
===================================================================
--- dll/win32/setupapi/devinst.c (revision 61786)
+++ dll/win32/setupapi/devinst.c (working copy)
@@ -211,7 +211,7 @@
* Field[3] Minor version
* Field[4] Product type
* Field[5] Suite mask
- * Remark: lastests fields may be NULL if the information is not provided
+ * Remark: these fields may be NULL if the information is not provided
*/
Fields[0] = Section;
if (Fields[0] == NULL)
Index: dll/win32/fmifs/query.c
===================================================================
--- dll/win32/fmifs/query.c (revision 61786)
+++ dll/win32/fmifs/query.c (working copy)
@@ -15,12 +15,12 @@
IN OUT PWCHAR FileSystem, /* FIXME: Probably one minimal size is
mandatory, but which one? */
OUT UCHAR* Major,
OUT UCHAR* Minor,
- OUT BOOLEAN* LastestVersion)
+ OUT BOOLEAN* LatestVersion)
{
PLIST_ENTRY ListEntry;
PIFS_PROVIDER Provider;
- if (!FileSystem || !Major ||!Minor ||!LastestVersion)
+ if (!FileSystem || !Major ||!Minor ||!LatestVersion)
return FALSE;
ListEntry = ProviderListHead.Flink;
@@ -38,7 +38,7 @@
wcscpy(FileSystem, Provider->Name);
*Major = 0; /* FIXME */
*Minor = 0; /* FIXME */
- *LastestVersion = TRUE; /* FIXME */
+ *LatestVersion = TRUE; /* FIXME */
return TRUE;
}
Index: drivers/input/i8042prt/mouse.c
===================================================================
--- drivers/input/i8042prt/mouse.c (revision 61786)
+++ drivers/input/i8042prt/mouse.c (working copy)
@@ -214,7 +214,7 @@
(DeviceExtension->MouseButtonState & ~Mask) | (NewButtonData &
Mask);
}
-/* Does lastest initializations for the mouse. This method
+/* Does final initializations for the mouse. This method
* is called just before connecting the interrupt.
*/
NTSTATUS
_______________________________________________
Ros-dev mailing list
[email protected]
http://www.reactos.org/mailman/listinfo/ros-dev