]> sigrok.org Git - libsigrok.git/commit
output/wav: fixup coding style nits, adjust data types
authorGerhard Sittig <redacted>
Sun, 23 Oct 2016 10:12:33 +0000 (12:12 +0200)
committerUwe Hermann <redacted>
Fri, 9 Feb 2018 21:40:58 +0000 (22:40 +0100)
commit972398f471696e6c8995f7066d6f5a4a1d2b3552
tree5fbd7ba0ae92b81a24b7cfd015f97af0261f6960
parent23eeac46edef25d1be2ff4716cb388296b6222ac
output/wav: fixup coding style nits, adjust data types

Fixup unbalanced braces for more complex if statements, to better
reflect the project's official coding style.

Adjust data types in the float_to_le() routine. A float value gets
copied to a buffer of bytes (uint8_t). Don't use 'char' on the other
side of assignments, to not assume a specific width for char, and to
avoid potential signedness issues. Copy from bytes to bytes instead.
src/output/wav.c