Print the socket fd that was invalid

This commit is contained in:
Evan Husted 2025-02-16 00:42:28 -06:00
parent 54d7972843
commit 9658ed99a8

View File

@ -806,8 +806,9 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Bsd
}
else
{
Logger.Warning?.PrintMsg(LogClass.ServiceBsd, "Invalid socket fd.");
Logger.Warning?.PrintMsg(LogClass.ServiceBsd, $"Invalid socket fd '{socketFd}'.");
}
return WriteBsdResult(context, 0, errno);
}