From 78719136cbafdd1d528e45e39a8a9e10cd962ff0 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Fri, 23 May 2025 11:50:13 +0200 Subject: BFS: Add missing semicolon --- BFS/host/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'BFS/host/app.c') diff --git a/BFS/host/app.c b/BFS/host/app.c index 66b4792..4431193 100644 --- a/BFS/host/app.c +++ b/BFS/host/app.c @@ -205,7 +205,7 @@ int main(int argc, char **argv) DPU_ASSERT(dpu_copy_to(dpu, DPU_MRAM_HEAP_POINTER_NAME, dpuNextFrontier_m, (uint8_t *) nextFrontier, - ROUND_UP_TO_MULTIPLE_OF_8(numNodes / 64 * sizeof(uint64_t)))) + ROUND_UP_TO_MULTIPLE_OF_8(numNodes / 64 * sizeof(uint64_t)))); // NOTE: No need to copy current frontier because it is written before being read stopTimer(&timer, 2); -- cgit v1.2.3