From: Neal Norwitz Date: Sat, 7 Jan 2006 21:19:49 +0000 (+0000) Subject: Fix icc warnings: extra semi-colon X-Git-Tag: v2.5a0~880 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f0464839bbcab1225661c20989066f05b71374f;p=thirdparty%2FPython%2Fcpython.git Fix icc warnings: extra semi-colon --- diff --git a/Modules/linuxaudiodev.c b/Modules/linuxaudiodev.c index 5aac51a6d923..a5ff367bfef7 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 21aa8b39f31b..af3002dd3ad0 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;