Skip to content

Commit 25b2381

Browse files
committed
making the whitespaces action happy about this PR
1 parent 4a4b685 commit 25b2381

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/include/abti_error.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
#define ABTI_STATIC_ASSERT(cond) \
3636
do { \
37-
((void)sizeof(char[2 * !!(cond)-1])); \
37+
((void)sizeof(char[2 * !!(cond) - 1])); \
3838
} while (0)
3939

4040
#ifdef ABT_CONFIG_PRINT_ABT_ERRNO

test/basic/info_query.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void info_query_all(ABT_bool init)
5656
while (p_query) {
5757
if (!(p_query->need_init && !init)) {
5858
const int idx = p_query->buffer_idx++;
59-
int32_t *ptr = (int32_t *)(&p_query->buffers[1 + (idx)*3]);
59+
int32_t *ptr = (int32_t *)(&p_query->buffers[1 + (idx) * 3]);
6060
ptr[-1] = 0x77777777;
6161
ptr[0] = 0x77777777;
6262
ptr[1] = 0x77777777;

test/benchmark/thread_ops.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "abt.h"
99
#include "abttest.h"
1010

11-
//#define TEST_MIGRATE_TO
11+
// #define TEST_MIGRATE_TO
1212
#define USE_JOIN_MANY
1313
#ifdef USE_JOIN_MANY
1414
#define ABT_THREAD_JOIN_MANY(n, tl) ABT_thread_join_many(n, tl)

test/benchmark/thread_ops_all.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "abt.h"
99
#include "abttest.h"
1010

11-
//#define TEST_MIGRATE_TO
11+
// #define TEST_MIGRATE_TO
1212
#define USE_JOIN_MANY
1313
#ifdef USE_JOIN_MANY
1414
#define ABT_THREAD_JOIN_MANY(n, tl) ABT_thread_join_many(n, tl)

0 commit comments

Comments
 (0)