diff options
author | Christopher Faylor <me@cgf.cx> | 2001-03-18 21:11:25 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-03-18 21:11:25 +0000 |
commit | 94b03f2380794f20fdc53873b6b03994a37c9579 (patch) | |
tree | c5865bc035f4efd9e81cff75153a1217321dbaa7 /winsup/cygwin/window.cc | |
parent | 51cb7ca7acf620946b7b90baa10c56ff2669803e (diff) | |
download | cygnal-94b03f2380794f20fdc53873b6b03994a37c9579.tar.gz cygnal-94b03f2380794f20fdc53873b6b03994a37c9579.tar.bz2 cygnal-94b03f2380794f20fdc53873b6b03994a37c9579.zip |
Fix spacing, copyrights.
Diffstat (limited to 'winsup/cygwin/window.cc')
-rw-r--r-- | winsup/cygwin/window.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/window.cc b/winsup/cygwin/window.cc index db5fbe10f..761db2500 100644 --- a/winsup/cygwin/window.cc +++ b/winsup/cygwin/window.cc @@ -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; |