Skip to content

Commit

Permalink
scheduler: fix FCGI build
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpanderson committed Dec 15, 2024
1 parent 1e77aeb commit 280c838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sched/sched_shmem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void get_buda_plan_classes(vector<string> &pcs) {
FILE *f = boinc::fopen("../buda_plan_classes", "r");
if (!f) return;
char buf[256];
while (fgets(buf, 256, f)) {
while (boinc::fgets(buf, 256, f)) {
strip_whitespace(buf);
pcs.push_back(buf);
}
Expand Down

0 comments on commit 280c838

Please sign in to comment.