You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
compilation fails with recent clang versions. clang 14 works, but 16 and 17 fail with:
CC libqatzip_la-qatzip.lo
In file included from qatzip.c:67:
./qatzip_internal.h:452:25: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
452 | void streamBufferCleanup();
| ^
| void
qatzip.c:1497:18: error: variable 'sleep_cnt' set but not used [-Werror,-Wunused-but-set-variable]
1497 | unsigned int sleep_cnt = 0;
| ^
qatzip.c:2126:18: error: variable 'sleep_cnt' set but not used [-Werror,-Wunused-but-set-variable]
2126 | unsigned int sleep_cnt = 0;
| ^
3 errors generated.
make[1]: *** [Makefile:523: libqatzip_la-qatzip.lo] Error 1
The text was updated successfully, but these errors were encountered:
compilation fails with recent clang versions. clang 14 works, but 16 and 17 fail with:
The text was updated successfully, but these errors were encountered: