Skip to content

Commit 706c0ff

Browse files
author
Giorgi Lomia
committed
Another unused variable fix.
1 parent 4012c54 commit 706c0ff

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tools/graph-stats/graph-memory-stats.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -303,22 +303,22 @@ doMemoryAnalysis(const std::unique_ptr<katana::PropertyGraph> graph) {
303303
katana::JsonDump(all_edge_alloc), outputfilename,
304304
"default_edge_alloc.json");
305305
KATANA_LOG_VASSERT(
306-
all_edge_width_json_res, "unexpected errror {}",
307-
all_edge_width_json_res.error());
306+
all_edge_alloc_json_res, "unexpected errror {}",
307+
all_edge_alloc_json_res.error());
308308

309309
auto all_node_usage_json_res = SaveToJson(
310310
katana::JsonDump(all_node_usage), outputfilename,
311311
"grouping_node_usage.json");
312312
KATANA_LOG_VASSERT(
313-
all_edge_width_json_res, "unexpected errror {}",
314-
all_edge_width_json_res.error());
313+
all_node_usage_json_res, "unexpected errror {}",
314+
all_node_usage_json_res.error());
315315

316316
auto all_edge_usage_json_res = SaveToJson(
317317
katana::JsonDump(all_edge_usage), outputfilename,
318318
"grouping_edge_usage.json");
319319
KATANA_LOG_VASSERT(
320-
all_edge_width_json_res, "unexpected errror {}",
321-
all_edge_width_json_res.error());
320+
all_edge_usage_json_res, "unexpected errror {}",
321+
all_edge_usage_json_res.error());
322322
}
323323

324324
int

0 commit comments

Comments
 (0)