From 62276f9e2865a915b211a7a17333dd013c35b15d Mon Sep 17 00:00:00 2001 From: tangxifan Date: Tue, 7 Apr 2020 18:43:11 -0600 Subject: [PATCH] minor code format --- openfpga/src/annotation/annotate_pb_graph.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openfpga/src/annotation/annotate_pb_graph.cpp b/openfpga/src/annotation/annotate_pb_graph.cpp index 2b78f2f0e..c930a20b6 100644 --- a/openfpga/src/annotation/annotate_pb_graph.cpp +++ b/openfpga/src/annotation/annotate_pb_graph.cpp @@ -89,7 +89,9 @@ void rec_build_vpr_pb_graph_interconnect_physical_type_annotation(t_pb_graph_nod } VTR_LOGV(verbose_output, "Infer physical type '%s' of interconnect '%s' (was '%s')\n", - INTERCONNECT_TYPE_STRING[interc_physical_type], interc->name, INTERCONNECT_TYPE_STRING[interc->type]); + INTERCONNECT_TYPE_STRING[interc_physical_type], + interc->name, + INTERCONNECT_TYPE_STRING[interc->type]); vpr_device_annotation.add_interconnect_physical_type(interc, interc_physical_type); } }