Skip to content

Commit

Permalink
Try again.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanHenson committed Oct 27, 2023
1 parent 4116bfb commit 375bd99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/linux/system_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ uint16_t aws_get_cpu_group_count() {
const struct aws_directory_entry *dir_entry = aws_directory_entry_iterator_get_value(dir_iter);
if (dir_entry) {
struct aws_byte_cursor search_cur = aws_byte_cursor_from_c_str("node");
AWS_LOGF_TRACE(AWS_LS_COMMON_GENERAL, "static: discovered NUMA node at " PRInSTR "\n", AWS_BYTE_CURSOR_PRI(dir_entry->path));
AWS_LOGF_TRACE(AWS_LS_COMMON_GENERAL, "static: discovered NUMA node at " PRInSTR "\n", AWS_BYTE_CURSOR_PRI(dir_entry->relative_path));

if ((dir_entry->file_type & (AWS_FILE_TYPE_SYM_LINK | AWS_FILE_TYPE_DIRECTORY)) &&
aws_byte_cursor_starts_with_ignore_case(&dir_entry->relative_path, &search_cur)) {
Expand Down

0 comments on commit 375bd99

Please sign in to comment.