tests: Close the display in testglxgetprocaddress.

Add a missing XCloseDisplay call to testglxgetprocaddress.
This commit is contained in:
Kyle Brenneman 2020-11-19 12:46:13 -07:00
parent b5f0eac1c3
commit 266f8e0da4

View file

@ -95,6 +95,9 @@ int main(int argc, char **argv)
return 1;
}
XCloseDisplay(dpy);
printf("Success\n");
// Success!
return 0;
}