License: X11
ChangeLog:
Jon Griffiths <jon_p_griffiths@yahoo.com>
+dlls/kernel/time.c
Spelling fixes
=====
"Don't wait for the seas to part, or messiahs to come;
Don't you sit around and waste this chance..." - Live
jon_p_griffiths@yahoo.com
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
--- wine/dlls/kernel/time.c Sat May 31 12:37:26 2003
+++ wine-develop/dlls/kernel/time.c Sun Jul 27 20:15:10 2003
@@ -252,7 +252,7 @@
t <<= 32;
t += (UINT)tmp_ft.dwLowDateTime;
- /* substract one day */
+ /* subtract one day */
one_day = 24*60*60;
one_day *= 10000000;
t -= one_day;
@@ -275,7 +275,7 @@
}
else
{
- /* calulcate the matching day of the week in the given week */
+ /* calculate the matching day of the week in the given week */
int dif = compareDate->wDayOfWeek - tmp.wDayOfWeek;
if (dif < 0)
dif += 7;
@@ -483,7 +483,7 @@
* Differences to UnixTimeToFileTime:
* 1) Divided by CLK_TCK
* 2) Time is relative. There is no 'starting date', so there is
- * no need in offset correction, like in UnixTimeToFileTime
+ * no need for offset correction, like in UnixTimeToFileTime
*/
static void TIME_ClockTimeToFileTime(clock_t unix_time, LPFILETIME filetime)
{