diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-19 07:33:23 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-19 07:33:23 +0000 |
commit | 3e50242127113e9e4e190e3d43ec99698a20dc2b (patch) | |
tree | d17b939f14e34d6c0452c77fb96be504bf8d0074 /PC/winsound.c | |
parent | Take a tour of hell's seedier neighborhoods to try to make winsound.Beep() (diff) | |
download | cpython-3e50242127113e9e4e190e3d43ec99698a20dc2b.tar.gz cpython-3e50242127113e9e4e190e3d43ec99698a20dc2b.tar.bz2 cpython-3e50242127113e9e4e190e3d43ec99698a20dc2b.zip |
Repair tab/space screwup.
Diffstat (limited to 'PC/winsound.c')
-rw-r--r-- | PC/winsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/winsound.c b/PC/winsound.c index 77572abac28..de80a9f3177 100644 --- a/PC/winsound.c +++ b/PC/winsound.c @@ -218,7 +218,7 @@ initwinsound(void) version.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&version); - whichOS = Win9X; + whichOS = Win9X; if (version.dwPlatformId != VER_PLATFORM_WIN32s && version.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS) whichOS = WinNT2000; |