atomicobject / heatshrink

data compression library for embedded/real-time systems
ISC License
1.33k stars 180 forks source link

Minor change for C99 compliance for an old compiler. no behavior changes #13

Closed far-bulogics closed 9 years ago

far-bulogics commented 9 years ago

Convered some statement to allow decode to run on C99 flavor compiler by converting some "for (int i = 0' into "for(i=0" and declaring the variable earlier in the function. No functional change.

silentbicycle commented 9 years ago

Looks great, thanks!