Skip to content

Commit 5eb34c0

Browse files
ci: format code
1 parent 1ccb581 commit 5eb34c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/configuration/logs/main.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ void reprConfiguration(Configuration* config) {
1010

1111
printf("Configuration 0x%p {\n", (void*)&config);
1212
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);
13+
printf(" char localRecordPath[%d] = \"%s\",\n", (int)LOCAL_RECORD_PATH_LENGTH,
14+
config->teamName);
1415
printf(" char teamName[%d] = \"%s\",\n", (int)TEAM_NAME_LENGTH, config->teamName);
1516
printf(" int gamesPerPlayer = %d,\n", config->gamesPerPlayer);
1617
printf("};");

0 commit comments

Comments
 (0)