Skip to content

Commit 514d56e

Browse files
committed
Minor VS buildfix
1 parent 9cfbd1a commit 514d56e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

desktop_version/src/Network.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ static NetworkBackend backends[NUM_BACKENDS];
5656

5757
int NETWORK_init(void)
5858
{
59-
int32_t any = 0;
59+
int32_t i, any = 0;
6060
#define ASSIGN_BACKEND(name, index) \
6161
backends[index].Init = name##_init; \
6262
backends[index].Shutdown = name##_shutdown; \
@@ -72,7 +72,6 @@ int NETWORK_init(void)
7272
#endif
7373
#undef ASSIGN_BACKEND
7474
#if NUM_BACKENDS > 0
75-
int32_t i;
7675
for (i = 0; i < NUM_BACKENDS; i += 1)
7776
{
7877
backends[i].IsInit = backends[i].Init();

0 commit comments

Comments
 (0)