mirage / checkseum

MIT License
15 stars 13 forks source link

On my FreeBSD 14 with clang 16.0.6, there are two warnings: #85

Closed hannesm closed 7 months ago

hannesm commented 8 months ago
native/adler32.c:28:7: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype] uLong _adler32(adler, buf, len)
      ^
native/adler32.c:100:7: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype] uLong checkseum_adler32_digest(adler, buf, len)
      ^
2 warnings generated.

This patch fixes these warnings, and result in the same binary.

dinosaure commented 7 months ago

Thanks!