aboutsummaryrefslogtreecommitdiff
path: root/runtime/src/kmp_debugger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/src/kmp_debugger.cpp')
-rw-r--r--runtime/src/kmp_debugger.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/src/kmp_debugger.cpp b/runtime/src/kmp_debugger.cpp
index 4394a19..c4f373e 100644
--- a/runtime/src/kmp_debugger.cpp
+++ b/runtime/src/kmp_debugger.cpp
@@ -279,10 +279,10 @@ int __kmp_omp_num_threads(ident_t const *ident) {
for (i = 0; i < info->num; ++i) {
if (kmp_location_match(&loc, &items[i])) {
num_threads = items[i].num_threads;
- }; // if
- }; // for
+ }
+ }
__kmp_str_loc_free(&loc);
- }; // if
+ }
return num_threads;
;