We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ccb581 commit 5eb34c0Copy full SHA for 5eb34c0
src/configuration/logs/main.c
@@ -10,7 +10,8 @@ void reprConfiguration(Configuration* config) {
10
11
printf("Configuration 0x%p {\n", (void*)&config);
12
printf(" char apiURL[%d] = \"%s\",\n", API_URL_LENGTH, config->apiURL);
13
- printf(" char localRecordPath[%d] = \"%s\",\n", (int)LOCAL_RECORD_PATH_LENGTH, config->teamName);
+ printf(" char localRecordPath[%d] = \"%s\",\n", (int)LOCAL_RECORD_PATH_LENGTH,
14
+ config->teamName);
15
printf(" char teamName[%d] = \"%s\",\n", (int)TEAM_NAME_LENGTH, config->teamName);
16
printf(" int gamesPerPlayer = %d,\n", config->gamesPerPlayer);
17
printf("};");
0 commit comments