Skip to content
Snippets Groups Projects
Commit 1d20b77d authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

strcat() -> SAFECAT()

CID 174491
parent 8b3bff33
No related branches found
No related tags found
No related merge requests found
......@@ -1343,7 +1343,7 @@ char *daystr(char days)
str[0]=0;
for(i=0;i<7;i++) {
if(days&(1<<i)) {
strcat(str,wday[i]);
SAFECAT(str,wday[i]);
SAFECAT(str," ");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment