diff --git a/userspace/aoc2024/full/main.cpp b/userspace/aoc2024/full/main.cpp index f279feac..6431e1f5 100644 --- a/userspace/aoc2024/full/main.cpp +++ b/userspace/aoc2024/full/main.cpp @@ -7,7 +7,7 @@ int main() for (int i = 1; i <= 25; i++) { char command[128]; - sprintf(command, "/bin/aoc2024/day%d", i); + sprintf(command, "/bin/aoc2024/aoc2024_day%d", i); struct stat st; if (stat(command, &st) == -1)