]> git.alsa-project.org Git - tinycompress.git/commit
compress: Change running from bitfield to plain int
authorRichard Fitzgerald <rf@opensource.wolfsonmicro.com>
Fri, 22 Feb 2013 15:59:54 +0000 (15:59 +0000)
committerVinod Koul <vinod.koul@intel.com>
Fri, 22 Feb 2013 18:08:12 +0000 (23:38 +0530)
commit14af3b09722f60f3ab3c52d21347c5907bec9ade
tree52e480c79c7152b3ba00ff547f42586f6e3e2911
parenteb63cc9ef0a99295a4804bb9c5be3d25b0a97cd2
compress: Change running from bitfield to plain int

Declaring running as a single-bit bitfield does not save any space
or give any coding advantages, but does leave potential opportunities
for the compiler to be inefficient in how it handles bitfields compared
to how it would handle a machine int.

Signed-off-by: Vinod Koul <vinod.koul@intel.com>
compress.c