diff options
author | Greg Ward <gward@python.net> | 2003-05-29 23:44:44 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2003-05-29 23:44:44 (GMT) |
commit | 84f8ecd072f9101cb0de8a0437fd660fa0425760 (patch) | |
tree | a23f2ef3481be7af3f8f839972ffad6659026955 /Modules | |
parent | 9f0c5754a6b2273add39f93cfb08f95b91568e89 (diff) | |
download | cpython-84f8ecd072f9101cb0de8a0437fd660fa0425760.zip cpython-84f8ecd072f9101cb0de8a0437fd660fa0425760.tar.gz cpython-84f8ecd072f9101cb0de8a0437fd660fa0425760.tar.bz2 |
Comment fix.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/ossaudiodev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/ossaudiodev.c b/Modules/ossaudiodev.c index 5df1d1a..40c328c 100644 --- a/Modules/ossaudiodev.c +++ b/Modules/ossaudiodev.c @@ -560,7 +560,7 @@ _ssize(oss_audio_t *self, int *nchannels, int *ssize) case AFMT_S16_BE: case AFMT_U16_LE: case AFMT_U16_BE: - *ssize = 2; /* 16 bit formats: 1 byte */ + *ssize = 2; /* 16 bit formats: 2 byte */ break; case AFMT_MPEG: case AFMT_IMA_ADPCM: |