]> wimlib.net Git - wimlib/blobdiff - src/comp.c
to_leXX() -> cpu_to_leXX(), leXX_to_cpu()
[wimlib] / src / comp.c
index 506a07818aefe9feab77f4bca008924403a2f926..7837a4614629f8b33fcde74051f676b76e7d220a 100644 (file)
@@ -29,7 +29,7 @@
 
 static inline void flush_bits(struct output_bitstream *ostream)
 {
-       *(u16*)ostream->bit_output = to_le16(ostream->bitbuf);
+       *(u16*)ostream->bit_output = cpu_to_le16(ostream->bitbuf);
        ostream->bit_output = ostream->next_bit_output;
        ostream->next_bit_output = ostream->output;
        ostream->output += 2;