kill unused variable warnings

This commit is contained in:
nick black 2021-07-09 09:34:08 -04:00
parent 37286aa707
commit 2441a31766
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -834,6 +834,8 @@ int kitty_scrub(const ncpile* p, sprixel* s){
// returns the number of bytes written
int kitty_draw(const ncpile* p, sprixel* s, FILE* out, int y, int x){
(void)p;
(void)y;
(void)x;
bool animated = false;
if(s->mstreamfp){ // active animation
int fret = fclose(s->mstreamfp);