Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
3f046483
Commit
3f046483
authored
Jan 07, 2006
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix icc warnings: extra semi-colon
parent
fe8e3d91
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Modules/linuxaudiodev.c
Modules/linuxaudiodev.c
+1
-1
Modules/ossaudiodev.c
Modules/ossaudiodev.c
+2
-2
No files found.
Modules/linuxaudiodev.c
View file @
3f046483
...
...
@@ -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 */
...
...
Modules/ossaudiodev.c
View file @
3f046483
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment