Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
format
  • Loading branch information
graebm committed Oct 1, 2022
commit 5b8e0cb6843a084358f4245a4f051ac4d1d21036
2 changes: 1 addition & 1 deletion source/event_loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ static struct aws_event_loop_group *s_event_loop_group_new(
}

char thread_name[16] = {0};
snprintf(thread_name, sizeof(thread_name), "aws-io %d/%d", (int)i+1, (int)el_count);
snprintf(thread_name, sizeof(thread_name), "aws-io %d/%d", (int)i + 1, (int)el_count);
thread_options.name = aws_byte_cursor_from_c_str(thread_name);

struct aws_event_loop *loop = new_loop_fn(alloc, &options, new_loop_user_data);
Expand Down