Skip to content

Commit fb3da65

Browse files
committed
Correct pointer type in logging macro.
Signed-off-by: Keith Rothman <[email protected]>
1 parent 771be2c commit fb3da65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/place/place.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@ std::unique_ptr<FILE, decltype(&vtr::fclose)> f_move_stats_file(nullptr, vtr::fc
278278
t_pl_loc to = affected_blocks.moved_blocks[0].new_loc; \
279279
ClusterBlockId b_to = place_ctx.grid_blocks[to.x][to.y].blocks[to.z]; \
280280
\
281-
t_physical_tile_type_ptr from_type = cluster_ctx.clb_nlist.block_type(b_from); \
282-
t_physical_tile_type_ptr to_type = nullptr; \
281+
t_logical_block_type_ptr from_type = cluster_ctx.clb_nlist.block_type(b_from); \
282+
t_logical_block_type_ptr to_type = nullptr; \
283283
if (b_to) { \
284284
to_type = cluster_ctx.clb_nlist.block_type(b_to); \
285285
} \

0 commit comments

Comments
 (0)