Skip to content

Commit 8d73bbc

Browse files
committed
hints.c add print prefix 'info'
1 parent 217fa25 commit 8d73bbc

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

examples/C/hints.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,18 +115,18 @@ int print_hints(int ncid,
115115
MPI_Info_free(&info_used);
116116

117117
if (v_align == -1)
118-
printf("nc_var_align_size is NOT set\n");
118+
printf("info nc_var_align_size is NOT set\n");
119119
else
120-
printf("nc_var_align_size set to = %lld\n", v_align);
120+
printf("info nc_var_align_size set to = %lld\n", v_align);
121121
if (h_chunk == -1)
122-
printf("nc_header_read_chunk_size is NOT set\n");
122+
printf("info nc_header_read_chunk_size is NOT set\n");
123123
else
124-
printf("nc_header_read_chunk_size set to = %lld\n", h_chunk);
124+
printf("info nc_header_read_chunk_size set to = %lld\n", h_chunk);
125125

126-
printf("header size = %lld\n", header_size);
127-
printf("header extent = %lld\n", header_extent);
128-
printf("var_zy start file offset = %lld\n", var_zy_start);
129-
printf("var_yx start file offset = %lld\n", var_yx_start);
126+
printf("header size = %lld\n", header_size);
127+
printf("header extent = %lld\n", header_extent);
128+
printf("var_zy start file offset = %lld\n", var_zy_start);
129+
printf("var_yx start file offset = %lld\n", var_yx_start);
130130
return nerrs;
131131
}
132132

0 commit comments

Comments
 (0)