Fix spacing, copyrights.

This commit is contained in:
Christopher Faylor
2001-03-18 21:11:25 +00:00
parent 51cb7ca7ac
commit 94b03f2380
10 changed files with 116 additions and 120 deletions

View File

@@ -56,7 +56,7 @@ WndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
start_time = GetTickCount ();
itv.it_value = itv.it_interval;
}
raise(SIGALRM);
raise (SIGALRM);
}
return 0;
case WM_ASYNCIO:
@@ -169,7 +169,7 @@ setitimer (int which, const struct itimerval *value, struct itimerval *oldvalue)
}
if (timer_active)
{
KillTimer (gethwnd(), timer_active);
KillTimer (gethwnd (), timer_active);
timer_active = 0;
}
if (oldvalue)
@@ -186,7 +186,7 @@ setitimer (int which, const struct itimerval *value, struct itimerval *oldvalue)
elapse = 1;
else
return 0;
if (!(timer_active = SetTimer (gethwnd(), 1, elapse, NULL)))
if (!(timer_active = SetTimer (gethwnd (), 1, elapse, NULL)))
{
__seterrno ();
return -1;