diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-05-23 11:50:13 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-05-23 11:50:13 +0200 |
commit | 78719136cbafdd1d528e45e39a8a9e10cd962ff0 (patch) | |
tree | d8717653e5305529434eadc50da07072cc09915d | |
parent | d7a28bb2f8a0c87f1ccdfd96d96a56634ea94a57 (diff) |
BFS: Add missing semicolon
-rw-r--r-- | BFS/host/app.c | 2 |
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); |