We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2910b5c commit c260254Copy full SHA for c260254
server.c
@@ -103,11 +103,16 @@ extern int verbose;
103
104
// main loop
105
int main(int argc, char *argv[]) {
106
+
107
+ int ret = 0;
108
+ int i = 0;
109
+ cmd_t cmd;
110
111
verbose = 0;
112
fd_set rfds;
113
114
// check for firmware version
- for( int i = 1; i < argc; i++ ) {
115
+ for( i = 1; i < argc; i++ ) {
116
if (strcmp(argv[i], "-v") == 0) {
117
printf("Branch: %s\n", VERSIONGITBRANCH);
118
printf("Revision: %s\n", VERSIONGITREVISION);
@@ -127,10 +132,6 @@ int main(int argc, char *argv[]) {
127
132
}
128
133
129
134
130
- int ret = 0;
131
- int i = 0;
- cmd_t cmd;
-
135
PRINT( INFO, "Starting Crimson server\n");
136
137
server_init_led();
0 commit comments