vuplus: relevant pids routing - fix

This commit is contained in:
BPanther
2020-01-18 10:48:38 +01:00
committed by Thilo Graf
parent f14212783b
commit 0875e2c853

View File

@@ -1957,7 +1957,7 @@ void cCA::SetCIRelevantPidsRouting(bool RPR, int slot)
printf("%s -> %s to: %b\n", FILENAME, __func__, RPR); printf("%s -> %s to: %b\n", FILENAME, __func__, RPR);
if (ci) if (ci)
{ {
fprintf(ci, "%i", RPR == true ? "yes" : "no"); fprintf(ci, "%s", RPR == true ? "yes" : "no");
fclose(ci); fclose(ci);
} }
} }