From 34fe7918d35770c010f4d45b5fc1dcaee8631524 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Mon, 6 Jan 2025 22:53:48 -0700 Subject: [PATCH] nvnet: Return `true' instead of `1' when returning a bool --- hw/xbox/nvnet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xbox/nvnet.c b/hw/xbox/nvnet.c index 1f308eb180..579aab929c 100644 --- a/hw/xbox/nvnet.c +++ b/hw/xbox/nvnet.c @@ -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,