Fix icc warnings: extra semi-colon
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 @@
 #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 @@
 } oss_audio_t;
 
 typedef struct {
-    PyObject_HEAD;
+    PyObject_HEAD
     int      fd;                      /* The open mixer device */
 } oss_mixer_t;