scan-build fix: return ret from notcurses_render_to_file()

This commit is contained in:
nick black 2020-07-23 02:11:56 -04:00 committed by Nick Black
parent 8ee7b3652c
commit 015dc544a6

View File

@ -1021,7 +1021,7 @@ int notcurses_render_to_file(struct notcurses* nc, FILE* fp){
}
fclose(out);
free(rastered);
return 0;
return ret;
}