code style cleanup

This commit is contained in:
Danny Mayer
2001-07-08 05:09:35 +00:00
parent 0a2d5c9905
commit 68c2ccc953
26 changed files with 564 additions and 573 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: os.c,v 1.1 2001/07/06 05:36:13 mayer Exp $ */
/* $Id: os.c,v 1.2 2001/07/08 05:09:11 mayer Exp $ */
#include <windows.h>
@@ -27,10 +27,10 @@ static void
initialize_action(void) {
BOOL bSuccess;
if(bInit)
if (bInit)
return;
GetSystemInfo (&SystemInfo);
GetSystemInfo(&SystemInfo);
osVer.dwOSVersionInfoSize = sizeof(osVer);
bSuccess = GetVersionEx(&osVer);
bInit = TRUE;