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

Fix GCC warning

warning: format not a string literal and no format arguments [-Wformat-security]
<nelgin> gcc version 9.4.0
parent 11813330
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4532 passed
......@@ -191,7 +191,7 @@ int main(int argc, char **argv)
break;
case 'm':
for(i=0;i<ni;i++) {
fprintf(out, ctrl_a); /* ctrl-ax */
fprintf(out, "%s", ctrl_a); /* ctrl-ax */
switch(n[i]) {
case 0:
case 2: /* no attribute */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment