Skip to content

Commit 3b83b2d

Browse files
committed
use the same constant name EXTRA_INFO_LEN as darshan-dxt-log-format.h
1 parent 9890eb0 commit 3b83b2d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

darshan-util/pydarshan/darshan/backend/api_def_c.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,14 @@
200200
int64_t read_count;
201201
};
202202
203+
#define EXTRA_INFO_LEN 64
204+
203205
typedef struct segment_info {
204206
int64_t offset;
205207
int64_t length;
206208
double start_time;
207209
double end_time;
208-
char extra_info[64];
210+
char extra_info[EXTRA_INFO_LEN];
209211
} segment_info;
210212
211213
/* counter names */

0 commit comments

Comments
 (0)