nvnet: Return true' instead of 1' when returning a bool

This commit is contained in:
Matt Borgerson
2025-01-06 23:05:53 -07:00
parent 8687b152c9
commit 34fe7918d3
+1 -1
View File
@@ -415,7 +415,7 @@ static void nvnet_send_packet(NvNetState *s, const uint8_t *buf, int size)
static bool nvnet_can_receive(NetClientState *nc)
{
NVNET_DPRINTF("nvnet_can_receive called\n");
return 1;
return true;
}
static ssize_t nvnet_receive(NetClientState *nc,