Discard return value from `XCloseDisplay`

fixes c5029cb2b
This commit is contained in:
YoshiRulz 2025-02-24 05:42:08 +10:00
parent 69b923ad55
commit d4adc8282c
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -968,7 +968,7 @@ namespace BizHawk.Client.EmuHawk
{
if (_x11Display != IntPtr.Zero)
{
XlibImports.XCloseDisplay(_x11Display);
_ = XlibImports.XCloseDisplay(_x11Display);
_x11Display = IntPtr.Zero;
}
}