From 0c0fc21559835044ab107199e334f7157d6a0d3d Mon Sep 17 00:00:00 2001 From: Andy Lin <32576375+andylin-hao@users.noreply.github.com> Date: Fri, 20 Dec 2024 18:26:36 +0800 Subject: [PATCH] CORE: Use uint64_t for bitmap configs (#1047) --- src/core/ucc_global_opts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ucc_global_opts.h b/src/core/ucc_global_opts.h index 203ca65e9d..85cd9d4835 100644 --- a/src/core/ucc_global_opts.h +++ b/src/core/ucc_global_opts.h @@ -28,7 +28,7 @@ typedef struct ucc_global_config { char *install_path; int initialized; /* Profiling mode */ - unsigned profile_mode; + uint64_t profile_mode; /* Profiling output file name */ char *profile_file;