(svn r17963) -Codechange: some documentation style

This commit is contained in:
rubidium
2009-11-03 17:30:08 +00:00
parent b211e0d5f5
commit d79439fb3c
7 changed files with 20 additions and 20 deletions

View File

@@ -415,8 +415,8 @@ void SlSetLength(size_t length)
switch (_sl.block_mode) {
case CH_RIFF:
/* Ugly encoding of >16M RIFF chunks
* The lower 24 bits are normal
* The uppermost 4 bits are bits 24:27 */
* The lower 24 bits are normal
* The uppermost 4 bits are bits 24:27 */
assert(length < (1 << 28));
SlWriteUint32((uint32)((length & 0xFFFFFF) | ((length >> 24) << 28)));
break;