diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-07 21:19:49 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-07 21:19:49 (GMT) |
commit | 3f0464839bbcab1225661c20989066f05b71374f (patch) | |
tree | 058c74f5d23356e438dfa57e576cbe7876f83dc3 /Modules | |
parent | fe8e3d918ef5893c67a6dc47512667f42ca720d2 (diff) | |
download | cpython-3f0464839bbcab1225661c20989066f05b71374f.zip cpython-3f0464839bbcab1225661c20989066f05b71374f.tar.gz cpython-3f0464839bbcab1225661c20989066f05b71374f.tar.bz2 |
Fix icc warnings: extra semi-colon
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/linuxaudiodev.c | 2 | ||||
-rw-r--r-- | Modules/ossaudiodev.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Modules/linuxaudiodev.c b/Modules/linuxaudiodev.c index 5aac51a..a5ff367 100644 --- a/Modules/linuxaudiodev.c +++ b/Modules/linuxaudiodev.c @@ -40,7 +40,7 @@ typedef unsigned long uint32_t; #endif typedef struct { - PyObject_HEAD; + PyObject_HEAD int x_fd; /* The open file */ int x_mode; /* file mode */ int x_icount; /* Input count */ diff --git a/Modules/ossaudiodev.c b/Modules/ossaudiodev.c index 21aa8b3..af3002d 100644 --- a/Modules/ossaudiodev.c +++ b/Modules/ossaudiodev.c @@ -45,7 +45,7 @@ typedef unsigned long uint32_t; #endif typedef struct { - PyObject_HEAD; + PyObject_HEAD char *devicename; /* name of the device file */ int fd; /* file descriptor */ int mode; /* file mode (O_RDONLY, etc.) */ @@ -55,7 +55,7 @@ typedef struct { } oss_audio_t; typedef struct { - PyObject_HEAD; + PyObject_HEAD int fd; /* The open mixer device */ } oss_mixer_t; |