shaun feakes 2018-06-17 07:40:39 -05:00
parent 9e8805c4de
commit 702d42be5a
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -63,7 +63,7 @@ void write_cron() {
//fprintf(stdout, "Open file failed 'sprinkler.cron'\n");
return;
}
fprintf(fp, "***** AUTO GENERATED DO NOT EDIT *****\n");
fprintf(fp, "#***** AUTO GENERATED DO NOT EDIT *****\n");
for (day=0; day <= 6; day++) {
if (_gpioconfig_.cron[day].hour >= 0 && _gpioconfig_.cron[day].minute >= 0) {
@ -87,7 +87,7 @@ void write_cron() {
}
}
}
fprintf(fp, "***** AUTO GENERATED DO NOT EDIT *****\n");
fprintf(fp, "#***** AUTO GENERATED DO NOT EDIT *****\n");
fclose(fp);
remount_root_ro(fs);