summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2025-05-23 11:50:13 +0200
committerBirte Kristina Friesel <birte.friesel@uos.de>2025-05-23 11:50:13 +0200
commit78719136cbafdd1d528e45e39a8a9e10cd962ff0 (patch)
treed8717653e5305529434eadc50da07072cc09915d
parentd7a28bb2f8a0c87f1ccdfd96d96a56634ea94a57 (diff)
BFS: Add missing semicolon
-rw-r--r--BFS/host/app.c2
1 files changed, 1 insertions, 1 deletions
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);