]> granicus.if.org Git - python/commitdiff
Fix icc warnings: extra semi-colon
authorNeal Norwitz <nnorwitz@gmail.com>
Sat, 7 Jan 2006 21:19:49 +0000 (21:19 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sat, 7 Jan 2006 21:19:49 +0000 (21:19 +0000)
Modules/linuxaudiodev.c
Modules/ossaudiodev.c

index 5aac51a6d923e689702b464c0900bf27c0efdf7a..a5ff367bfef7784497d58b87e4d2f2cce76d1f81 100644 (file)
@@ -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 */
index 21aa8b39f31b07be12e7138572d69d215b109907..af3002dd3ad049022c4d86c6455ed940a433f415 100644 (file)
@@ -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;