various: Window objects should be initialised to 0 not NULL

This commit is contained in:
Peter Howkins
2021-12-24 17:00:13 +00:00
committed by Jon Trulson
parent 5a763ae48b
commit 341fdfbe71
3 changed files with 3 additions and 3 deletions

View File

@@ -2476,7 +2476,7 @@ invokeXDrawFunction(
char * functionName = argv[0];
Display * display;
Window drawable;
Window destination = NULL;
Window destination = 0;
int srcX = 0, srcY = 0;
int destX = 0, destY = 0;
unsigned int width = 0, height = 0;