Skip to content

Commit

Permalink
Fix the format.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankyluk committed Nov 7, 2024
1 parent 73fa0fd commit 5b5a3fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/unix/coredump.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ os_dump_core_internal(void)
ASSERT(d_r_get_num_threads() == 1);
// All other threads have been suspended, we can make it a shared table with
// lock.
strhash_table_t *string_htable =
strhash_hash_create(GLOBAL_DCONTEXT, /*bits=*/8, /*load_factor_percent=*/80,
/*table_flags=*/HASHTABLE_SHARED, NULL _IF_DEBUG("mmap-string-table"));
strhash_table_t *string_htable = strhash_hash_create(
GLOBAL_DCONTEXT, /*bits=*/8, /*load_factor_percent=*/80,
/*table_flags=*/HASHTABLE_SHARED, NULL _IF_DEBUG("mmap-string-table"));

// Iterate through memory regions to store the start, end, protection, and
// the offset to the section name string table. The first byte of the
Expand Down

0 comments on commit 5b5a3fd

Please sign in to comment.