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

strcat() -> SAFECAT()

CID 174491
parent 9ae5d681
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -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.
Please register or to comment