Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix compiler warnings about const-breaking cast
`buffer` is already declared as `const unsigned char*`, which can be transparently accepted by `fwrite()`. Casting it to `char*` here just makes compilers complain about "discarding cv-qualifiers", so this commit removes that cast.
- Loading branch information