We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cfbd1a commit 514d56eCopy full SHA for 514d56e
desktop_version/src/Network.c
@@ -56,7 +56,7 @@ static NetworkBackend backends[NUM_BACKENDS];
56
57
int NETWORK_init(void)
58
{
59
- int32_t any = 0;
+ int32_t i, any = 0;
60
#define ASSIGN_BACKEND(name, index) \
61
backends[index].Init = name##_init; \
62
backends[index].Shutdown = name##_shutdown; \
@@ -72,7 +72,6 @@ int NETWORK_init(void)
72
#endif
73
#undef ASSIGN_BACKEND
74
#if NUM_BACKENDS > 0
75
- int32_t i;
76
for (i = 0; i < NUM_BACKENDS; i += 1)
77
78
backends[i].IsInit = backends[i].Init();
0 commit comments