summaryrefslogtreecommitdiff
path: root/Modules/ossaudiodev.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-01-07 21:19:49 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-01-07 21:19:49 +0000
commitb5edf6f5d62f417113de79f040b7655910a06bce (patch)
tree1e701f5751d0366dac1892d434198a8c4027311e /Modules/ossaudiodev.c
parent8bf3186af36b23fc14f3c9981d776e2be9191fe6 (diff)
downloadcpython-b5edf6f5d62f417113de79f040b7655910a06bce.tar.gz
Fix icc warnings: extra semi-colon
Diffstat (limited to 'Modules/ossaudiodev.c')
-rw-r--r--Modules/ossaudiodev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/ossaudiodev.c b/Modules/ossaudiodev.c
index 21aa8b39f3..af3002dd3a 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;