pipe: don't use fprintf for string without format [skip ci]

This commit is contained in:
itsmattkc
2025-12-29 10:44:54 -08:00
parent 50b218b257
commit dfb31f430d
+1 -1
View File
@@ -1152,7 +1152,7 @@ int install_polkit()
FILE *rule = fopen(POLKIT_RULE_DST, "w");
if (action && rule) {
fprintf(action, ACTION_TEMPLATE, exe);
fprintf(rule, RULE_TEMPLATE);
fputs(RULE_TEMPLATE, rule);
ret = VANILLA_SUCCESS;
}