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

Correct signedness of window parameters used in XParseGeometry.

Signed x, y, Unsigned width, height.

	modified:   xinit.c
	modified:   xlspwin.c
	modified:   xrdopt.c
This commit is contained in:
Nick Briggs
2017-06-07 17:19:02 -07:00
parent 1dadac1888
commit 118a3e7750
3 changed files with 10 additions and 10 deletions

View File

@@ -72,11 +72,11 @@ int Byte_Order, Bitmap_Bit_Order, Bitmap_Pad, Default_Depth, Display_Height, Dis
int LispWindowRequestedX = 0;
int LispWindowRequestedY = 0;
int LispWindowRequestedWidth = DEF_WIN_WIDTH;
int LispWindowRequestedHeight = DEF_WIN_HEIGHT;
unsigned LispWindowRequestedWidth = DEF_WIN_WIDTH;
unsigned LispWindowRequestedHeight = DEF_WIN_HEIGHT;
int LispDisplayRequestedX, LispDisplayRequestedY, LispDisplayRequestedWidth,
LispDisplayRequestedHeight;
int LispDisplayRequestedX, LispDisplayRequestedY;
unsigned LispDisplayRequestedWidth, LispDisplayRequestedHeight;
Colormap Colors;