Skip to content
Snippets Groups Projects
Commit b334b16e authored by rswindell's avatar rswindell
Browse files

Cosmetic only: No longer pads out the weekdays when an event/call-out will run.

parent 3ab037d5
No related branches found
No related tags found
No related merge requests found
......@@ -1478,11 +1478,10 @@ char *daystr(char days)
str[0]=0;
for(i=0;i<7;i++) {
if(days&(1<<i))
if(days&(1<<i)) {
strcat(str,wday[i]);
else
strcat(str," ");
strcat(str," ");
strcat(str," ");
}
}
return(str);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment