Skip to content

Commit b021789

Browse files
fix compilation warning in compressed_grid.cpp
1 parent 41a2802 commit b021789

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/place/compressed_grid.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ void echo_compressed_grids(const char* filename, const std::vector<t_compressed_
179179
fprintf(fp, "--------------------------------------------------------------\n");
180180
fprintf(fp, "\n");
181181
for (int i = 0; i < (int)comp_grids.size(); i++) {
182-
fprintf(fp, "\n\nGrid type: %s \n", device_ctx.logical_block_types[i].name);
182+
fprintf(fp, "\n\nGrid type: %s \n", device_ctx.logical_block_types[i].name.c_str());
183183

184184
fprintf(fp, "X coordinates: \n");
185185
for (int j = 0; j < (int)comp_grids[i].compressed_to_grid_x[layer_num].size(); j++) {

0 commit comments

Comments
 (0)