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
When running make in the cdecrypt folder I get the following errors:
[C] cdecrypt.c
cdecrypt.c:220:14: error: variable 'written' set but not used [-Werror,-Wunused-but-set-variable]
uint64_t written = 0;
^
cdecrypt.c:304:14: error: variable 'written' set but not used [-Werror,-Wunused-but-set-variable]
uint64_t written = 0;
^
2 errors generated.
make: *** [cdecrypt.o] Error 1
The text was updated successfully, but these errors were encountered:
cdecrypt.c:220:14: error: variable 'written' set but not used [-Werror,-Wunused-but-set-variable] uint64_t written = 0; ^ cdecrypt.c:304:14: error: variable 'written' set but not used [-Werror,-Wunused-but-set-variable] uint64_t written = 0; ^ 2 errors generated. make: *** [cdecrypt.o] Error 1
When running
make
in the cdecrypt folder I get the following errors:The text was updated successfully, but these errors were encountered: