androiddump: Unused variable on WIN32

This variable is unused on _WIN32, prevent a warning.
This commit is contained in:
John Thacker 2024-03-15 08:44:56 -04:00
parent fa1a1b82e0
commit 69797c06a9
1 changed files with 2 additions and 0 deletions

View File

@ -536,7 +536,9 @@ static socket_handle_t adb_connect(const char *server_ip, unsigned short *server
struct sockaddr_in server;
struct sockaddr_in client;
int status;
#ifndef _WIN32
int result;
#endif
int tries = 0;
memset(&server, 0x0, sizeof(server));