Skip to content

Commit

Permalink
doc/examples: use hwloc_uint64_t in memory-attributes.c
Browse files Browse the repository at this point in the history
MinGW doesn't get uint64_t on our CI.

Signed-off-by: Brice Goglin <Brice.Goglin@inria.fr>
  • Loading branch information
bgoglin committed Aug 23, 2022
1 parent d316fa7 commit 601b58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/examples/memory-attributes.c
Expand Up @@ -52,7 +52,7 @@ int main(void)
HWLOC_LOCAL_NUMANODE_FLAG_LARGER_LOCALITY);
printf("Found %u local NUMA nodes\n", n);
for(i=0; i<n; i++) {
uint64_t latency, bandwidth;
hwloc_uint64_t latency, bandwidth;

printf("NUMA node L#%u P#%u (subtype %s) is local to core L#0\n", nodes[i]->logical_index, nodes[i]->os_index, nodes[i]->subtype);

Expand Down

0 comments on commit 601b58d

Please sign in to comment.