1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-28 05:05:41 +00:00

Fix unused variable warnings. (#173)

This commit is contained in:
Bruce Mitchener
2021-01-04 12:58:16 +07:00
committed by GitHub
parent 9373f4ebbe
commit a481057fbe
20 changed files with 56 additions and 45 deletions

View File

@@ -302,7 +302,10 @@ int N_OP_drawline(LispPTR ptr, int curbit, int xsize, int width, int ysize, int
(start_addr < DisplayRegion68k_end_addr) &&
((int)(temp_e = (DLword *)(dataptr - DisplayRegion68k)) >= 0) &&
((DLword *)dataptr < DisplayRegion68k_end_addr)) {
int start_x, start_y, end_x, end_y, w, h, displayflg;
int start_x, start_y, end_x, end_y, w, h;
#if defined(SUNDISPLAY) && defined(OLD_CURSOR)
int displayflg;
#endif
start_y = (int)temp_s / DisplayRasterWidth;
start_x = ((int)temp_s % DisplayRasterWidth) * BITSPER_DLWORD;