1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 23:27:12 +00:00

Resolve warning: variable may be uninitialized when used - initialize more variables.

This commit is contained in:
Nick Briggs 2023-01-18 11:47:00 -08:00
parent 7c270c8b49
commit a958af1627

View File

@ -894,13 +894,13 @@ LispPTR bitshade_bitmap(LispPTR *args) {
LispPTR clipreg;
int right, top, destbits, left, bottom;
LispPTR operation, texture;
DLword *srcbase, *dstbase, *base;
DLword *srcbase = NULL, *dstbase = NULL, *base = NULL;
int dty, slx, dstbpl, op, src_comp;
#ifdef REALCURSOR
int displayflg = 0;
#endif
int rasterwidth;
int num_gray, curr_gray_line;
int num_gray = 0, curr_gray_line = 0;
DLword grayword[4] = {0, 0, 0, 0};
texture = args[0];