SDL: tray, windows: replace ZeroMemory() with SDL_zero()

From 05932e05da29dc5ef6d209041de424d395189d18 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Fri, 27 Dec 2024 12:05:00 +0300
Subject: [PATCH] tray, windows: replace ZeroMemory() with SDL_zero()

---
 src/tray/windows/SDL_tray.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tray/windows/SDL_tray.c b/src/tray/windows/SDL_tray.c
index 94aa258e3461e..d19c690b5b59f 100644
--- a/src/tray/windows/SDL_tray.c
+++ b/src/tray/windows/SDL_tray.c
@@ -202,7 +202,7 @@ SDL_Tray *SDL_CreateTray(SDL_Surface *icon, const char *tooltip)
     tray->hwnd = CreateWindowEx(0, TEXT("Message"), NULL, 0, 0, 0, 0, 0, HWND_MESSAGE, NULL, NULL, NULL);
     SetWindowLongPtr(tray->hwnd, GWLP_WNDPROC, (LONG_PTR) TrayWindowProc);
 
-    ZeroMemory(&tray->nid, sizeof(NOTIFYICONDATAW));
+    SDL_zero(tray->nid);
     tray->nid.cbSize = sizeof(NOTIFYICONDATAW);
     tray->nid.hWnd = tray->hwnd;
     tray->nid.uID = (UINT) get_next_id();