1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

dtcm: Fix typo

This commit is contained in:
Peter Howkins 2018-07-13 17:07:15 +01:00
parent b2c67eefae
commit 4509d5b4dd

View file

@ -933,7 +933,7 @@ load_dssw_times(DSSW *dssw, Tick start, Tick stop, Boolean set_no_time) {
dssw->start_val.block = (buf[5] == 'a') ?
TIME_AM : TIME_PM;
} else {
snprintf(dssw->start_val.val, sizefof(dssw->start_val.val), "%s", buf);
snprintf(dssw->start_val.val, sizeof(dssw->start_val.val), "%s", buf);
dssw->start_val.block = TIME_AM;
}
}